glide-design-system
Version:
Glide design system is an open-source React component library. It offers numerous benefits that make them essential tools for design and development teams.
29 lines (28 loc) • 567 B
CSS
.circularProgress{
width: 40px;
height: 40px;
border-radius: 50%;
border: 3px solid;
border-top: 3px solid #ffffff;
animation: spin 0.9s linear infinite;
transform: translate(-50%, -50%);
justify-content: center;
align-items: center;
display: inline-block;
}
.circularProgressContainer{
display: flex;
justify-content: flex-start;
align-items: center;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
50% {
transform: rotate(180deg);
}
100% {
transform: rotate(360deg);
}
}