web/sidebar: disable scrollbars

This commit is contained in:
wukko 2024-06-16 19:11:44 +06:00
parent 1c9d604326
commit 3c1a69063d
No known key found for this signature in database
GPG key ID: 3E30B3F26C7B4AA2

View file

@ -61,8 +61,9 @@
#sidebar { #sidebar {
background: var(--secondary); background: var(--secondary);
height: 100vh; height: 100vh;
position: sticky;
width: var(--sidebar-width); width: var(--sidebar-width);
position: sticky;
scrollbar-width: none;
} }
#sidebar-tabs { #sidebar-tabs {
@ -70,6 +71,7 @@
justify-content: space-between; justify-content: space-between;
padding-bottom: var(--padding); padding-bottom: var(--padding);
overflow: scroll; overflow: scroll;
scrollbar-width: none;
} }
@media screen and (max-width: 535px) { @media screen and (max-width: 535px) {