fix: prevent navbar icons to cut on mobile

This commit is contained in:
Ivelin Megdanov 2025-02-10 18:02:04 +02:00
parent 2d17afc0f6
commit 675257eb56

View file

@ -13,6 +13,7 @@
background-color: transparent; background-color: transparent;
overflow-y: auto; overflow-y: auto;
scrollbar-width: none; scrollbar-width: none;
-ms-overflow-style: none;
&::-webkit-scrollbar { &::-webkit-scrollbar {
display: none; display: none;
@ -21,6 +22,7 @@
.nav-tab-button { .nav-tab-button {
width: calc(var(--vertical-nav-bar-size) - 1.2rem); width: calc(var(--vertical-nav-bar-size) - 1.2rem);
height: calc(var(--vertical-nav-bar-size) - 1.2rem); height: calc(var(--vertical-nav-bar-size) - 1.2rem);
min-height: 3.5rem;
} }
} }