feat: thin themed scrollbar replaces hidden scrollbars

6px scrollbar with bg track, bg-t thumb, fg-f hover. Subtle but
visible. Applies globally to all scrollable areas.
This commit is contained in:
2026-07-02 09:22:08 -04:00
parent ca7a9e30f1
commit cbfbcb2627
+13 -3
View File
@@ -48,10 +48,20 @@
box-sizing: border-box;
}
/* Scrollbars hidden for terminal feel */
/* Thin themed scrollbar for chat area */
*::-webkit-scrollbar {
width: 0px;
height: 0px;
width: 6px;
height: 6px;
}
*::-webkit-scrollbar-track {
background: var(--gb-bg);
}
*::-webkit-scrollbar-thumb {
background: var(--gb-bg-t);
border-radius: 3px;
}
*::-webkit-scrollbar-thumb:hover {
background: var(--gb-fg-f);
}
input, textarea, button {