From 2d9fbcab70a2f941de95d5aabfc3d57cd3417c1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sch=C3=BCrmann?= Date: Wed, 26 Jun 2019 10:49:46 +0200 Subject: [PATCH] Fix the scrollbar in the community bar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently the scrollbar is always visible because the inner container is 5px bigger in height than the outer container. This is hereby fixed. Signed-off-by: Jonas Schürmann --- res/css/structures/_TagPanel.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/css/structures/_TagPanel.scss b/res/css/structures/_TagPanel.scss index a818f52125..a01e5dd838 100644 --- a/res/css/structures/_TagPanel.scss +++ b/res/css/structures/_TagPanel.scss @@ -65,7 +65,7 @@ limitations under the License. align-items: center; margin-top: 5px; - height: 100%; + height: calc(100% - 5px); } .mx_TagPanel .mx_TagPanel_tagTileContainer > div { height: 40px;