Make mobile overlay transparent - sidebar slides over content without darkening

This commit is contained in:
Keith Smith
2025-12-27 08:56:57 -07:00
parent fc1a4844a3
commit fcb5ab5ca3
+2 -2
View File
@@ -872,12 +872,12 @@ a:hover {
height: 24px; height: 24px;
} }
/* Mobile overlay */ /* Mobile overlay - removed dark background, sidebar slides over content */
.mobile-overlay { .mobile-overlay {
display: none; display: none;
position: fixed; position: fixed;
inset: 0; inset: 0;
background-color: rgba(0, 0, 0, 1); background-color: transparent;
z-index: 40; z-index: 40;
} }