From eca18c0660c4e2ea10cc57635ecc8789acad9192 Mon Sep 17 00:00:00 2001 From: Harshil Sharma Date: Thu, 12 Aug 2021 19:09:44 +0530 Subject: [PATCH] Avoided double horizontal scrollbars (#954) --- webapp/src/components/centerPanel.scss | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/webapp/src/components/centerPanel.scss b/webapp/src/components/centerPanel.scss index 5d76e6262..e3a1006dc 100644 --- a/webapp/src/components/centerPanel.scss +++ b/webapp/src/components/centerPanel.scss @@ -16,10 +16,10 @@ flex: 1 1 auto; display: flex; flex-direction: column; - overflow: auto; + overflow: hidden; > * { - + padding: 0 80px; @media screen and (max-width: 768px) { @@ -45,4 +45,9 @@ background: rgb(var(--center-channel-bg-rgb)); z-index: 100; } + + > div:nth-child(2) { + padding: 4px; + margin-left: 80px; + } }