13 lines
176 B
SCSS
13 lines
176 B
SCSS
|
|
.rotate{
|
|
animation: rotate 1s linear infinite;
|
|
}
|
|
@keyframes rotate {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
} |