From 4871bd1326b7b08402db52273068146a2a84a5b1 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 22 Nov 2021 23:44:41 +0200 Subject: [PATCH] Removed desktop toolbar scrollbar. --- src/react/src/components/MainNav/Toolbar/Toolbar.scss | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/react/src/components/MainNav/Toolbar/Toolbar.scss b/src/react/src/components/MainNav/Toolbar/Toolbar.scss index 3294a9e4d..084112bf6 100644 --- a/src/react/src/components/MainNav/Toolbar/Toolbar.scss +++ b/src/react/src/components/MainNav/Toolbar/Toolbar.scss @@ -17,7 +17,6 @@ .r-menu { display: flex; align-items: center; - overflow-x: scroll; > div { display: flex; @@ -156,17 +155,20 @@ @media (max-width: 900px) { .toolbar { .r-menu { - // overflow: scroll; + overflow: scroll; > div { margin-left: 3rem; - // overflow: scroll; position: relative; display: flex; flex-wrap: unset; width: 100%; align-items: center; } + + .select-wrapper + div { + display: none; + } } } }