From 83f7386889f30ffaee0651842d36eceefa6e12da Mon Sep 17 00:00:00 2001 From: DAB0mB Date: Thu, 9 Feb 2017 16:58:47 -0200 Subject: [PATCH] Step 8.6: Add new-chat style --- client/imports/pages/chats/new-chat.scss | 14 ++++++++++++++ client/main.scss | 1 + 2 files changed, 15 insertions(+) create mode 100644 client/imports/pages/chats/new-chat.scss diff --git a/client/imports/pages/chats/new-chat.scss b/client/imports/pages/chats/new-chat.scss new file mode 100644 index 0000000..40904c4 --- /dev/null +++ b/client/imports/pages/chats/new-chat.scss @@ -0,0 +1,14 @@ +.new-chat { + .user-picture { + border-radius: 50%; + width: 50px; + float: left; + } + + .user-name { + margin-left: 20px; + margin-top: 25px; + transform: translate(0, -50%); + float: left; + } +} \ No newline at end of file diff --git a/client/main.scss b/client/main.scss index 406a92a..028a9e8 100644 --- a/client/main.scss +++ b/client/main.scss @@ -6,6 +6,7 @@ // Pages @import "imports/pages/chats/chats"; +@import "imports/pages/chats/new-chat"; @import "imports/pages/chats/chats-options"; @import "imports/pages/login/login"; @import "imports/pages/messages/messages";