[Review] Move visible countdown types to getter (#1999)

* Move visible countdown types to getter

* Punchier shimmer animation
This commit is contained in:
Carlos Fernandez 2026-06-14 13:15:01 -04:00 committed by GitHub
parent 919e872f68
commit ec56e1812c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 29 additions and 19 deletions

View file

@ -120,7 +120,7 @@
border-radius: 6px;
&.change-glow {
animation: shimmer 1s ease-in-out;
animation: shimmer 1s ease-out;
background: linear-gradient(-45deg, transparent 30%, light-dark(@dark-blue-40, @golden-40) 35%, transparent 40%);
background-size: 300%;
background-position-x: 100%
@ -237,6 +237,9 @@
}
@keyframes shimmer {
from {
background-position-x: 98%;
}
to {
background-position-x: 0%
}