From cbfbcb26276e9a135b4ad11ad759e89e47d74e58 Mon Sep 17 00:00:00 2001 From: hobokenchicken Date: Thu, 2 Jul 2026 09:22:08 -0400 Subject: [PATCH] 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. --- web/src/styles/index.css | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/web/src/styles/index.css b/web/src/styles/index.css index a4d2770..507145b 100644 --- a/web/src/styles/index.css +++ b/web/src/styles/index.css @@ -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 {