skillbox/client/src/styles/_animations.scss

10 lines
121 B
SCSS

@keyframes spin {
100% {
transform: rotate(360deg);
}
}
@mixin spin {
animation: spin 2.5s linear infinite;
}