UI: hide nav scrollbar, remove nav border

This commit is contained in:
mousberg 2026-01-25 12:20:58 +00:00 committed by Peter Steinberger
parent 8ec10c1d45
commit 31b038873e

View File

@ -196,8 +196,8 @@
overflow-y: auto;
overflow-x: hidden;
padding: 16px 12px;
border-right: 1px solid var(--border);
background: var(--bg);
scrollbar-width: none; /* Firefox */
transition:
width var(--shell-focus-duration) var(--shell-focus-ease),
padding var(--shell-focus-duration) var(--shell-focus-ease),
@ -205,6 +205,10 @@
min-height: 0;
}
.nav::-webkit-scrollbar {
display: none; /* Chrome/Safari */
}
.shell--chat-focus .nav {
width: 0;
padding: 0;