mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-31 09:07:44 +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;
|
|
}
|
|
}
|