fix(settings-modal): raise settings modal above reply and challenge modals (#1062)

This commit is contained in:
Tommaso Casaburi
2026-03-12 17:51:30 +08:00
committed by GitHub
parent fe55e6f332
commit 053965f124
@@ -5,7 +5,7 @@
width: 100vw; width: 100vw;
height: 100vh; height: 100vh;
background-color: rgba(0, 0, 0, 0.25); background-color: rgba(0, 0, 0, 0.25);
z-index: 4; z-index: 1001;
} }
.settingsModal label, .settingsModal button, .settingsModal select { .settingsModal label, .settingsModal button, .settingsModal select {
@@ -39,7 +39,7 @@
max-height: 80%; max-height: 80%;
overflow-y: auto; overflow-y: auto;
position: fixed; position: fixed;
z-index: 5; z-index: 1002;
padding: 2px; padding: 2px;
font-size: var(--settings-modal-font-size); font-size: var(--settings-modal-font-size);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.25); box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);