css.gg
Version:
Minimalistic Icon library Designed by code.
26 lines (23 loc) • 619 B
CSS
@keyframes spinner-two-alt {
0% {transform: rotate(0deg)}
to {transform: rotate(359deg)}
}
.gg-spinner-two-alt,.gg-spinner-two-alt::before {
box-sizing: border-box;
display: block;
width: 20px;
height: 20px
}
.gg-spinner-two-alt {
transform: scale(var(--ggs,1));
position: relative
}
.gg-spinner-two-alt::before {
content: "";
position: absolute;
border-radius: 100px;
animation: spinner-two-alt 1s cubic-bezier(.6,0,.4,1) infinite;
border: 3px solid transparent;
border-bottom-color: currentColor;
border-top-color: currentColor
}