From dce7fc2ebb5094e2e1d5bc66ce1688041d0b354f Mon Sep 17 00:00:00 2001 From: amemya Date: Tue, 23 Jun 2026 02:22:42 +0900 Subject: [PATCH] fix: customize global scrollbar for Windows consistency (#111) --- frontend/src/App.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/frontend/src/App.css b/frontend/src/App.css index c170bd9..21c3ee2 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -27,6 +27,27 @@ body { -webkit-user-select: none; } +/* Global Scrollbar Styles */ +::-webkit-scrollbar { + width: 12px; + height: 12px; +} + +::-webkit-scrollbar-track { + background: transparent; +} + +::-webkit-scrollbar-thumb { + background-color: var(--border-color); + border-radius: 6px; + border: 3px solid transparent; + background-clip: padding-box; +} + +::-webkit-scrollbar-thumb:hover { + background-color: var(--text-secondary); +} + .app-container { display: flex; flex-direction: column;