asi-calculator/styles/_animations.css

16 lines
173 B
CSS
Raw Normal View History

2024-03-31 15:24:07 +02:00
.isValidating {
animation: flicker 2s infinite ease-out;
}
@keyframes flicker {
0% {
opacity: 0.1;
}
50% {
opacity: 1;
}
100% {
opacity: 0.1;
}
}