From 7f2096db8684e97390c8ce2d92af0005acec19e2 Mon Sep 17 00:00:00 2001 From: Keith Smith Date: Sat, 27 Dec 2025 08:53:18 -0700 Subject: [PATCH] Increase mobile sidebar overlay opacity MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed mobile overlay from 50% to 75% opacity (25% transparent) to make the sidebar content more visible when open on mobile devices. Updated rgba(0, 0, 0, 0.5) to rgba(0, 0, 0, 0.75) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- static/css/app.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/css/app.css b/static/css/app.css index f48c9ae..6dff62f 100644 --- a/static/css/app.css +++ b/static/css/app.css @@ -877,7 +877,7 @@ a:hover { display: none; position: fixed; inset: 0; - background-color: rgba(0, 0, 0, 0.5); + background-color: rgba(0, 0, 0, 0.75); z-index: 40; }