fix: checkboxes overlapping the header
Massimo Melina committed
Jan 22, 2022 at 12:30 UTC
807596925c0a251baaa1d8f29a1ca204e624d984
2 files changed
+2
frontend/src/dialog.css
+1
@@ -8,6 +8,7 @@
8
display: flex;
9
justify-Content: center;
10
align-Items: center;
11
+ z-index: 1000;
12
}
13
.dialog {
14
background: #fff; /*fallback*/
frontend/src/index.scss
+1
@@ -84,6 +84,7 @@ header {
84
top: 0;
85
background: var(--bg);
86
padding: .2em;
87
+ z-index: 1; /* necessary to not be covered by checkboxes */
88
}
89
90
.ani-working { animation:1s blink infinite }