From d839a8f8a378c6ef886ac3253c955a9564b1412c Mon Sep 17 00:00:00 2001 From: marwin Date: Sun, 5 Apr 2026 18:06:20 +0200 Subject: [PATCH] Dark scrollbar styling Co-Authored-By: Claude Sonnet 4.6 --- static/css/app.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/static/css/app.css b/static/css/app.css index 329b0da..6b91d1f 100644 --- a/static/css/app.css +++ b/static/css/app.css @@ -11,8 +11,14 @@ html, body { height: 100%; overflow: hidden; + scrollbar-color: #333 #000; } +::-webkit-scrollbar { width: 8px; height: 8px; } +::-webkit-scrollbar-track { background: #000; } +::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; } +::-webkit-scrollbar-thumb:hover { background: #555; } + :root { --bg: #000; --bg-card: transparent;