Author: Adam Argyle [argyle@google.com]
Committer: GitHub [noreply@github.com] Tue, 03 Oct 2023 15:54:53 +0000
Hash: 591f7d711e6b8a137d620e77a074c8ccaf310a42
Timestamp: Tue, 03 Oct 2023 15:54:53 +0000 (11 months ago)

+3 -3 +/-2 browse
fixes #425 (#426)
fixes #425 (#426)

1diff --git a/build/to-stylesheet.js b/build/to-stylesheet.js
2index 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
15index 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