mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2025-01-03 10:25:06 +01:00
16 lines
173 B
CSS
16 lines
173 B
CSS
|
.isValidating {
|
||
|
animation: flicker 2s infinite ease-out;
|
||
|
}
|
||
|
|
||
|
@keyframes flicker {
|
||
|
0% {
|
||
|
opacity: 0.1;
|
||
|
}
|
||
|
50% {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
100% {
|
||
|
opacity: 0.1;
|
||
|
}
|
||
|
}
|