From 2b29a2da701d19387db169cc49bf88fc7510846f Mon Sep 17 00:00:00 2001 From: Dotan Simha Date: Wed, 5 Oct 2016 15:18:38 +0300 Subject: [PATCH] Step 2.16: Added some css styles to the chats list --- .../imports/pages/chats/chats.component.scss | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 client/imports/pages/chats/chats.component.scss diff --git a/client/imports/pages/chats/chats.component.scss b/client/imports/pages/chats/chats.component.scss new file mode 100644 index 0000000..6470e09 --- /dev/null +++ b/client/imports/pages/chats/chats.component.scss @@ -0,0 +1,20 @@ +.chats-page-content { + .chat-picture { + border-radius: 50%; + width: 50px; + float: left; + } + + .chat-info { + float: left; + margin: 10px 0 0 20px; + + .last-message-timestamp { + position: absolute; + top: 10px; + right: 10px; + font-size: 14px; + color: #9A9898; + } + } +} \ No newline at end of file