From 675257eb56f518cc14e2ad0178996648034a5d6b Mon Sep 17 00:00:00 2001 From: Ivelin Megdanov Date: Mon, 10 Feb 2025 18:02:04 +0200 Subject: [PATCH] fix: prevent navbar icons to cut on mobile --- src/components/NavBar/VerticalNavBar/styles.less | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/NavBar/VerticalNavBar/styles.less b/src/components/NavBar/VerticalNavBar/styles.less index 3a6ae76d8..7d17d6054 100644 --- a/src/components/NavBar/VerticalNavBar/styles.less +++ b/src/components/NavBar/VerticalNavBar/styles.less @@ -13,6 +13,7 @@ background-color: transparent; overflow-y: auto; scrollbar-width: none; + -ms-overflow-style: none; &::-webkit-scrollbar { display: none; @@ -21,6 +22,7 @@ .nav-tab-button { width: calc(var(--vertical-nav-bar-size) - 1.2rem); height: calc(var(--vertical-nav-bar-size) - 1.2rem); + min-height: 3.5rem; } }