Files
groovee/src/components/Loading.css
2024-07-27 10:58:43 +07:00

20 lines
379 B
CSS

/* Loader.module.css */
.Loader {
display: flex; /* Enable Flexbox */
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
left: 0;
right: 0;
top: 0;
bottom: 0;
position: absolute;
background-color: white;
z-index: 200;
}
.LoaderChild {
width: 80px; /* Set the width to 80px */
height: 400px;
color: black;
}