From 55879bdf110e18e69c480ba6575c65ba0a58444b Mon Sep 17 00:00:00 2001 From: Harshil Sharma <18575143+harshilsharma63@users.noreply.github.com> Date: Thu, 3 Feb 2022 02:18:46 +0530 Subject: [PATCH] Fixed a bug causing double scroll bars to appear (#2217) --- webapp/src/pages/boardPage.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/webapp/src/pages/boardPage.scss b/webapp/src/pages/boardPage.scss index 881213ed771..f94317e68a0 100644 --- a/webapp/src/pages/boardPage.scss +++ b/webapp/src/pages/boardPage.scss @@ -39,7 +39,7 @@ } } - @media screen and (max-width: 768px) { + @media screen and (max-width: 768px) { .mobileWarning {display: flex;} } } @@ -48,3 +48,7 @@ width: 600px; height: 468px; } + +.mainContentRow { + height: calc(100% - 40px); +}