fix: base css a bit too harsh
Massimo Melina committed
Apr 16, 2023 at 20:09 UTC
c051f342af6aa5d1c5980b46206df97ebce6b4d3
1 file changed
+3
-3
frontend/src/index.scss
+3
-3
@@ -31,7 +31,7 @@
31
}
32
}
33
body {
34
- background: var(--bg);
34
+ background-color: var(--bg);
35
margin: 0;
36
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
37
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
@@ -139,7 +139,7 @@ input, select, ul a {
139
header {
140
position: sticky;
141
top: 0;
142
- background: var(--bg);
142
+ background-color: var(--bg);
143
padding: .2em;
144
z-index: 1; /* necessary to not be covered by checkboxes */
145
}
@@ -334,7 +334,7 @@ button label {
334
bottom: 0;
335
display: flex;
336
gap: .1em;
337
- background: var(--bg);
337
+ background-color: var(--bg);
338
padding: 0 0.2em 0.2em;
339
&>button { z-index: 1; }
340
& button { box-shadow: 0 0 .3em .3em #0003; }