fix: firefox not displaying dashes between size and timestamp
Massimo Melina committed
Jan 29, 2024 at 12:22 UTC
67180c4b8442f08969d32030b05045dda6ed8429
1 file changed
+4
-1
frontend/src/index.scss
+4
-1
@@ -13,7 +13,10 @@
13
--button-bg: #6080aa;
14
--button-text: #eaeaea;
15
--focus-color: #468;
16
- --separator: " – " / ""; // skip screen-reader
16
+ --separator: " – "; // fallback
17
+ @supports (content: "" / "") {
18
+ --separator: " – " / ""; // skip for screen-reader
19
+ }
20
.highlightedText { color: #0006; text-shadow: 0 0 3px #0006; }
21
.theme-dark {
22
--bg: #000;