hookshot/web/components/elements/LoadingSpinner.module.scss

19 lines
315 B
SCSS
Raw Permalink Normal View History

@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.spinner {
width: 16px;
height: 16px;
animation-name: spin;
animation-duration: 1000ms;
animation-timing-function: steps(8, end);
animation-iteration-count: infinite;
}