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;
height: 100vh;
background-color: rgba(0, 0, 0, 0.25);
z-index: 4;
z-index: 1001;
}
.settingsModal label, .settingsModal button, .settingsModal select {
@@ -39,7 +39,7 @@
max-height: 80%;
overflow-y: auto;
position: fixed;
z-index: 5;
z-index: 1002;
padding: 2px;
font-size: var(--settings-modal-font-size);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
@@ -155,4 +155,4 @@
max-height: 60% !important;
left: calc(50% - 2px) !important;
}
}
}