grungnet/src/components/Spinner.css
2020-04-14 17:36:25 +10:00

14 lines
174 B
CSS

.spinner {
width: 32px;
height: 32px;
position: relative;
animation: rotate 2s infinite linear;
}
@keyframes rotate {
100% {
transform: rotate(360deg);
}
}