diff options
| author | Terry Truong <terry06890@gmail.com> | 2023-01-06 16:59:54 +1100 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2023-01-06 16:59:54 +1100 |
| commit | 50fc47e6e387c3b278526ef773badf63913389d6 (patch) | |
| tree | 71be9fa001ce6848e298bdabe400eb9dbd26848c /src/index.css | |
| parent | 559902e0211a06b349c4c2f50b0882a8d314f8b7 (diff) | |
Add settings modal
Add saving, loading, default vals, and device-detection, to store.ts.
Add setting for hiding minor tick labels.
Diffstat (limited to 'src/index.css')
| -rw-r--r-- | src/index.css | 13 |
1 files changed, 13 insertions, 0 deletions
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 { |
