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;