barkstone2_vault-to-blog/react-app-internal/src/styles/LoadingScreen.css

27 lines
No EOL
521 B
CSS

.loading-screen {
position: fixed;
top: 0;
left: 0;
width: 100vw !important;
height: 100vh !important;
background-color: rgba(255, 255, 255, 0.8);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}
.spinner {
width: 50px;
height: 50px;
border: 5px solid rgba(0, 0, 0, 0.1);
border-left-color: purple;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}