From b74742e15ecb77ca942141b0898f887b1aac9355 Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Tue, 24 Mar 2026 22:32:40 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20thin=20subtle=20scrollbar=20=E2=80=94=20?= =?UTF-8?q?6px,=20white/8%=20thumb,=20transparent=20track?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- styles/globals.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/styles/globals.css b/styles/globals.css index 1937543..59c2bb5 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -69,6 +69,26 @@ transform-style: preserve-3d; } + /* * Thin subtle scrollbar */ + * { + scrollbar-width: thin; + scrollbar-color: rgba(255, 255, 255, 0.08) transparent; + } + *::-webkit-scrollbar { + width: 6px; + height: 6px; + } + *::-webkit-scrollbar-track { + background: transparent; + } + *::-webkit-scrollbar-thumb { + background: rgba(255, 255, 255, 0.08); + border-radius: 3px; + } + *::-webkit-scrollbar-thumb:hover { + background: rgba(255, 255, 255, 0.15); + } + /* * Scrollbar hide - for horizontal scroll navs */ .scrollbar-hide { -ms-overflow-style: none;