From 9574a5480ff579bb81f2f96d5c48bbd04382afe8 Mon Sep 17 00:00:00 2001
From: danieldeng2 <danieldeng223@gmail.com>
Date: Thu, 6 Aug 2020 16:49:37 +0100
Subject: [PATCH] Fix height issue

---
 frontend/src/components/organisms/LeftBar/style.module.scss  | 2 +-
 frontend/src/components/organisms/RightBar/style.module.scss | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/frontend/src/components/organisms/LeftBar/style.module.scss b/frontend/src/components/organisms/LeftBar/style.module.scss
index c9d5e9544..8f956f974 100644
--- a/frontend/src/components/organisms/LeftBar/style.module.scss
+++ b/frontend/src/components/organisms/LeftBar/style.module.scss
@@ -5,7 +5,7 @@
   left: 250px;
   width: 0;
   margin-left: -250px;
-  max-height: calc(100vh - 61px);
+  height: calc(100vh - 61px);
 	padding-bottom: 72px;
 	overflow-y: auto;
 	overflow-x: hidden;
diff --git a/frontend/src/components/organisms/RightBar/style.module.scss b/frontend/src/components/organisms/RightBar/style.module.scss
index 6b75ceb55..a1063ebfa 100644
--- a/frontend/src/components/organisms/RightBar/style.module.scss
+++ b/frontend/src/components/organisms/RightBar/style.module.scss
@@ -5,7 +5,7 @@
   right: 250px;
   width: 0;
 	margin-right: -250px;
-  max-height: calc(100vh - 61px);
+  height: calc(100vh - 61px);
 	padding-bottom: 72px;
 	overflow-y: auto;
 	overflow-x: hidden;
-- 
GitLab