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.
39 lines (36 loc) • 698 B
CSS
.backdrop{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 12;
}
.disableBackdrop{
display: none;
}
.circularProgress{
width: 40px;
height: 40px;
border-radius: 50%;
border: 3px solid rgb(27, 55, 100);
border-top: 3px solid #ffffff1a;
animation: spin 0.9s linear infinite;
transform: translate(-50%, -50%);
display: inline-block;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
50% {
transform: rotate(180deg);
}
100% {
transform: rotate(360deg);
}
}