pkg-components
Version:
22 lines (19 loc) • 475 B
CSS
.loader {
display: flex;
justify-content: center;
align-items: center;
background-color: transparent;
color: transparent ;
}
.spinner {
width: 30px;
height: 30px;
border-radius: 50%;
border: 3px solid var(--color-primary-red);
border-top: 3px solid;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}