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:
@@ -48,10 +48,20 @@
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Scrollbars hidden for terminal feel */
|
/* Thin themed scrollbar for chat area */
|
||||||
*::-webkit-scrollbar {
|
*::-webkit-scrollbar {
|
||||||
width: 0px;
|
width: 6px;
|
||||||
height: 0px;
|
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 {
|
input, textarea, button {
|
||||||
|
|||||||
Reference in New Issue
Block a user