From 9d01f0f1691ec04a06bead7d9bf834c47c9a93d8 Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Wed, 29 Jun 2022 17:32:14 +1000 Subject: Add saved-indicator to Settings Also, for range sliders, only save after user releases the slider --- src/index.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'src/index.css') 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; + } +} -- cgit v1.2.3