Commit
+3 -3 +/-2 browse
1 | diff --git a/build/to-stylesheet.js b/build/to-stylesheet.js |
2 | index 2d0afd5..b54c71d 100644 |
3 | --- a/build/to-stylesheet.js |
4 | +++ b/build/to-stylesheet.js |
5 | @@ -62,7 +62,7 @@ ${dark_propsMeta} |
6 | if (hasDarkKeyframe) { |
7 | appendedMeta += ` |
8 | @media (--OSdark) { |
9 | - ${val.trim().replace(/\n/g, '\n ')}; |
10 | + ${val.trim().replace(/\n/g, '\n ')} |
11 | }` |
12 | } |
13 | }) |
14 | diff --git a/src/props.animations.css b/src/props.animations.css |
15 | index 603555a..a03bddd 100644 |
16 | --- a/src/props.animations.css |
17 | +++ b/src/props.animations.css |
18 | @@ -118,12 +118,12 @@ |
19 | 0% { opacity: 0; filter: brightness(1) blur(20px) } |
20 | 10% { opacity: 1; filter: brightness(0.5) blur(10px) } |
21 | 100% { opacity: 1; filter: brightness(1) blur(0) } |
22 | - }; |
23 | + } |
24 | } |
25 | @media (--OSdark) { |
26 | @keyframes fade-out-bloom { |
27 | 100% { opacity: 0; filter: brightness(1) blur(20px) } |
28 | 10% { opacity: 1; filter: brightness(0.5) blur(10px) } |
29 | 0% { opacity: 1; filter: brightness(1) blur(0) } |
30 | - }; |
31 | + } |
32 | } |
33 | \ No newline at end of file |