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