Fixed. The mobile drawer backdrop is now visible and accepts clicks while open, allowing the existing tap-outside handler to close it.

This commit is contained in:
defnax 2026-09-09 20:41:27 +02:00
parent 7bdda39927
commit f4663453fd
2 changed files with 4 additions and 4 deletions

View File

@ -334,12 +334,12 @@
}
.sidebar-drawer__backdrop {
display: none !important;
display: block !important;
position: fixed;
inset: 0;
background: rgba(15, 23, 42, .35);
/* The drawer itself owns navigation input; this layer is visual only. */
pointer-events: none;
/* Rendered only while open; tapping outside closes the drawer. */
pointer-events: auto;
z-index: 1001;
}
}

File diff suppressed because one or more lines are too long