fix: scroll apps list in navigation rail to prevent overflow

This commit is contained in:
Linus Rath
2026-05-01 21:35:29 +02:00
parent 878df6bb49
commit 5d292fa43f
2 changed files with 10 additions and 1 deletions
+9
View File
@@ -522,6 +522,15 @@ body {
}
}
.scroll-hidden::-webkit-scrollbar {
display: none;
}
.scroll-hidden {
-ms-overflow-style: none;
scrollbar-width: none;
}
/* Mobile backdrop blur support */
@supports (backdrop-filter: blur(8px)) {
.mobile-backdrop {
+1 -1
View File
@@ -400,7 +400,7 @@ export function NavigationRail({
<nav
className={cn(
"flex flex-col",
"flex flex-col flex-1 min-h-0 overflow-y-auto scroll-hidden",
collapsed ? "items-center gap-1 py-3 px-1" : "gap-0.5 py-2 px-2",
)}
role="navigation"