breakfast-ui
Version:
Your tasty component library
20 lines (19 loc) • 422 B
CSS
.circular-loader {
width: 1em;
height: 1em;
border-radius: 50%;
display: inline-block;
margin: 0;
/* border-top: 3px solid #000; */
border-right: 3px solid transparent;
box-sizing: border-box;
animation: rotation 1s linear infinite;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}