From 5985fd010e5d0858cbe56bfad017dacaf9e51d2c Mon Sep 17 00:00:00 2001 From: Keith Smith Date: Fri, 9 Jan 2026 08:17:52 -0700 Subject: [PATCH] Fix Chromium scrollbar styling to match dark theme MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add custom scrollbar styles for Chromium/Webkit browsers to match the dark theme aesthetic. Firefox already had proper scrollbar styling, but Chrome was showing default light gray scrollbars. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- static/css/app.css | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/static/css/app.css b/static/css/app.css index 03b83d7..d3b500b 100644 --- a/static/css/app.css +++ b/static/css/app.css @@ -91,6 +91,36 @@ --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3); } +/* ============================================ + Scrollbar Styling + ============================================ */ + +/* Firefox scrollbar styling */ +* { + scrollbar-width: thin; + scrollbar-color: var(--border) var(--surface); +} + +/* Chromium/Webkit scrollbar styling */ +*::-webkit-scrollbar { + width: 12px; + height: 12px; +} + +*::-webkit-scrollbar-track { + background: var(--surface); +} + +*::-webkit-scrollbar-thumb { + background-color: var(--border); + border-radius: 6px; + border: 3px solid var(--surface); +} + +*::-webkit-scrollbar-thumb:hover { + background-color: var(--surface-hover); +} + /* ============================================ Reset & Base ============================================ */