From 8fbcb07999563859858582b0c8a1ec217464ee4e Mon Sep 17 00:00:00 2001 From: w3bdesign <45217974+w3bdesign@users.noreply.github.com> Date: Tue, 17 Dec 2024 03:05:22 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20ui:=20customize=20scrollbar=20st?= =?UTF-8?q?yles=20globally?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Implement customized scrollbar styling to enhance UI consistency across browsers, using thin width and matrix-dark color scheme for better visual integration --- src/app/globals.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app/globals.css b/src/app/globals.css index 92f52aa3..63a4dd84 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -25,6 +25,11 @@ body { } /* Scrollbar */ +* { + scrollbar-width: thin; + scrollbar-color: var(--matrix-dark) #1a1a1a; +} + ::-webkit-scrollbar { width: 6px; }