From 39f5c830499ff30bc3461b9960baf5d86695e9c3 Mon Sep 17 00:00:00 2001 From: Hugh Hackman Date: Sun, 3 May 2026 18:11:29 +0000 Subject: [PATCH] fix(GRO-730): restore global scrollbar polish, scope WebKit hide to .scrollbar-hide utility Co-Authored-By: Paperclip --- apps/web/src/index.css | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/apps/web/src/index.css b/apps/web/src/index.css index aedcf90..6725147 100644 --- a/apps/web/src/index.css +++ b/apps/web/src/index.css @@ -67,10 +67,20 @@ input:focus, select:focus, textarea:focus { /* ─── Scrollbar polish ─── */ ::-webkit-scrollbar { - display: none; + width: 6px; } + +::-webkit-scrollbar-track { + background: transparent; +} + ::-webkit-scrollbar-thumb { - display: none; + background: #cbd5e1; + border-radius: 3px; +} + +::-webkit-scrollbar-thumb:hover { + background: #94a3b8; } /* ─── Scrollbar hide utility ─── */ @@ -78,3 +88,7 @@ input:focus, select:focus, textarea:focus { -ms-overflow-style: none; scrollbar-width: none; } + +.scrollbar-hide::-webkit-scrollbar { + display: none; +}