muryshev's picture
init
79278ec
raw
history blame contribute delete
257 Bytes
.spinner {
border: 3px solid rgba(122, 122, 122, 0.1);
border-left-color: var(--border-1-color);
border-radius: 50%;
width: 16px;
height: 16px;
animation: spin 1s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}