From 7a2f3bde97c6eebb175ea4bacdcdb902693d451b Mon Sep 17 00:00:00 2001 From: OpSimple Date: Mon, 18 Jun 2018 00:02:03 +0530 Subject: Solved the sidebar scroll for mobile users Solved the most annoying problem for the mobile clients, the sidebar scroll. Yeah, we've experienced this situation when we couldn't invite someone who's at the last end of the sidebar with our mobile browser cause sidebar spills out of the screen when there's a lot of users connected. But, now this is solved by fixing the height of sidebar container to 90% when shown and to 0% when hidden. Ah! I was really grieving to get rid of this shit. --- client/style.css | 3 +++ 1 file changed, 3 insertions(+) (limited to 'client/style.css') diff --git a/client/style.css b/client/style.css index 18abc33..1990c0b 100644 --- a/client/style.css +++ b/client/style.css @@ -52,6 +52,9 @@ ul li { .hidden { display: none; } +.expand { + height: 90%; +} .container { max-width: 600px; margin: 0 auto; -- cgit v1.2.1