From fcb5ab5ca35894b72926f13aef5164c93fb8a5cd Mon Sep 17 00:00:00 2001 From: Keith Smith Date: Sat, 27 Dec 2025 08:56:57 -0700 Subject: [PATCH] Make mobile overlay transparent - sidebar slides over content without darkening --- static/css/app.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/css/app.css b/static/css/app.css index 3f122b6..405c399 100644 --- a/static/css/app.css +++ b/static/css/app.css @@ -872,12 +872,12 @@ a:hover { height: 24px; } -/* Mobile overlay */ +/* Mobile overlay - removed dark background, sidebar slides over content */ .mobile-overlay { display: none; position: fixed; inset: 0; - background-color: rgba(0, 0, 0, 1); + background-color: transparent; z-index: 40; }