Finished animation framework

This commit is contained in:
WBHarry 2026-06-10 14:51:44 +02:00
parent 208e8192b4
commit 0961ad8d73
5 changed files with 129 additions and 97 deletions

View file

@ -89,6 +89,10 @@
&.inactive {
opacity: 0.4;
}
&.change-glow {
animation: change-glow 1s ease-in-out infinite;
}
}
}
}
@ -101,10 +105,20 @@
overflow: auto;
max-height: 312px;
.countdown-category-container {
&.hidden {
display: none;
}
}
.countdown-container {
display: flex;
width: 100%;
&.change-glow {
animation: change-glow 1s ease-in-out infinite;
}
&.icon-only {
gap: 8px;
@ -203,4 +217,14 @@
// }
}
}
@keyframes change-glow {
0% {
box-shadow: 0 0 1px 1px @golden;
}
100% {
box-shadow: 0 0 2px 2px @golden;
}
}
}