13 lines
206 B
Plaintext
13 lines
206 B
Plaintext
.animation-spin-fast {
|
|
animation: fa-spin 0.5s infinite linear;
|
|
}
|
|
|
|
@keyframes animation-spin-fast {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|