From 076cdef003255badf984960dade2bf775db7f6b8 Mon Sep 17 00:00:00 2001 From: ajuvercr Date: Sun, 5 Apr 2020 20:34:40 +0200 Subject: [PATCH] fix lobby not scrolling --- backend/static/style/style.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/backend/static/style/style.css b/backend/static/style/style.css index beb42de..973ddd6 100644 --- a/backend/static/style/style.css +++ b/backend/static/style/style.css @@ -42,7 +42,7 @@ body { .lobby_wrapper { flex-grow: 1; position: relative; - ; + height: 100%; } .lobby { @@ -50,8 +50,9 @@ body { display: flex; flex-wrap: wrap; align-self: flex-start; - overflow-y: scroll; + overflow-y: auto; justify-content: center; + max-height: 100%; } .input_container { @@ -81,7 +82,7 @@ body { } .map_select { - overflow-y: scroll; + overflow-y: auto; flex-shrink: 5; width: 75%; height: 100%;