buster/web/src/styles/tailwindAnimations.css

16 lines
344 B
CSS
Raw Normal View History

2025-02-22 00:31:14 +08:00
@theme {
/* animations */
--animate-indeterminate-progress-bar: indeterminate-progress-bar 1s infinite linear;
@keyframes indeterminate-progress-bar {
0% {
transform: translateX(0) scaleX(0);
}
40% {
transform: translateX(0) scaleX(0.4);
}
100% {
transform: translateX(100%) scaleX(0.5);
}
}
}