Skip to content

Commit

Permalink
fixes #425
Browse files Browse the repository at this point in the history
  • Loading branch information
argyleink committed Oct 3, 2023
1 parent c9272aa commit ec00c00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/to-stylesheet.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ ${dark_propsMeta}
if (hasDarkKeyframe) {
appendedMeta += `
@media (--OSdark) {
${val.trim().replace(/\n/g, '\n ')};
${val.trim().replace(/\n/g, '\n ')}
}`
}
})
Expand Down
4 changes: 2 additions & 2 deletions src/props.animations.css
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,12 @@
0% { opacity: 0; filter: brightness(1) blur(20px) }
10% { opacity: 1; filter: brightness(0.5) blur(10px) }
100% { opacity: 1; filter: brightness(1) blur(0) }
};
}
}
@media (--OSdark) {
@keyframes fade-out-bloom {
100% { opacity: 0; filter: brightness(1) blur(20px) }
10% { opacity: 1; filter: brightness(0.5) blur(10px) }
0% { opacity: 1; filter: brightness(1) blur(0) }
};
}
}

0 comments on commit ec00c00

Please sign in to comment.