aboutsummaryrefslogtreecommitdiff
path: root/src/index.css
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-06-29 17:32:14 +1000
committerTerry Truong <terry06890@gmail.com>2022-06-29 17:32:14 +1000
commit9d01f0f1691ec04a06bead7d9bf834c47c9a93d8 (patch)
tree8ea3c466e16038a856598f1a46a5cafd07537b25 /src/index.css
parent06aa08b1de6bdb60203231d5c22816a6c9c4cee4 (diff)
Add saved-indicator to Settings
Also, for range sliders, only save after user releases the slider
Diffstat (limited to 'src/index.css')
-rw-r--r--src/index.css13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/index.css b/src/index.css
index c3e9ac7..ffd7dda 100644
--- a/src/index.css
+++ b/src/index.css
@@ -75,3 +75,16 @@ body {
background-color: transparent;
}
}
+.animate-flash-green {
+ animation-name: flash-green;
+ animation-duration: 700ms;
+ animation-timing-function: ease-in;
+}
+@keyframes flash-green {
+ from {
+ color: lawngreen;
+ }
+ to {
+ color: inherit;
+ }
+}