From 35afe1da1aac2b3d4d65199e61c8566518bd6bbe Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Thu, 18 Jan 2018 11:39:42 -0500 Subject: [PATCH] Added height to chat list Fixed issue where chat list would cause the entire screen to scroll if there were more that than there was vertical space to display them all. These two lines took me two hours, wtf. --- less/chats.less | 2 ++ 1 file changed, 2 insertions(+) diff --git a/less/chats.less b/less/chats.less index b2942a3..d95fbd7 100644 --- a/less/chats.less +++ b/less/chats.less @@ -34,6 +34,8 @@ .chats-list { flex: 1; overflow-y: auto; + margin-bottom: 0; + height: ~"calc(100% - 3em)"; } .chat-search {