Added initial css and html framework
Change-Id: I82fafe83852a45f8af7d959e496c6246a8865ec5
Signed-off-by: Michael Davis <michael.s.davis@ibm.com>
diff --git a/src/scss/components/_systemUser.scss b/src/scss/components/_systemUser.scss
new file mode 100644
index 0000000..8ab1535
--- /dev/null
+++ b/src/scss/components/_systemUser.scss
@@ -0,0 +1,23 @@
+#app-user {
+ position: absolute;
+ top: 50%;
+ right: .8em;
+ transform: translateY(-50%);
+ .app-user__name {
+ display: inline-block;
+ position: relative;
+
+ }
+ &::before {
+ content: "";
+ display: inline-block;
+ background: $white;
+ height:20px;
+ width: 20px;
+ border-radius: 10px;
+ vertical-align: middle;
+ //position: relative;
+ //top: 50%;
+ //transform: translateY(-50%);
+ }
+}