ldrs
Version:
Minimalist loading animations for React and web components
39 lines (35 loc) • 768 B
CSS
.container_5b72ca {
flex-shrink: 0;
display: inline-flex;
align-items: center;
justify-content: center;
height: var(--uib-size);
width: var(--uib-size);
}
.inner_4fdcf0 {
height: var(--uib-size);
width: var(--uib-size);
transform-origin: center;
animation: rotate_fb0a9b var(--uib-speed) linear infinite;
will-change: transform;
overflow: visible;
}
.car_dffe76 {
fill: none;
stroke: var(--uib-color);
stroke-dasharray: var(--uib-dash), var(--uib-gap);
stroke-dashoffset: 0;
stroke-linecap: round;
transition: stroke 0.5s ease;
}
.track_5abec2 {
fill: none;
stroke: var(--uib-color);
opacity: var(--uib-bg-opacity);
transition: stroke 0.5s ease;
}
@keyframes rotate_fb0a9b {
100% {
transform: rotate(360deg);
}
}