From 50fc47e6e387c3b278526ef773badf63913389d6 Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Fri, 6 Jan 2023 16:59:54 +1100 Subject: Add settings modal Add saving, loading, default vals, and device-detection, to store.ts. Add setting for hiding minor tick labels. --- 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 e16c538..2a7819b 100644 --- a/src/index.css +++ b/src/index.css @@ -38,6 +38,19 @@ background-color: transparent; } } +.animate-flash-yellow { + animation-name: flash-yellow; + animation-duration: 700ms; + animation-timing-function: ease-in; +} +@keyframes flash-yellow { + from { + color: #ca8a04; + } + to { + color: inherit; + } +} /* Other */ @font-face { -- cgit v1.2.3