latest update 27 jul 24

This commit is contained in:
zadit
2024-07-27 10:58:43 +07:00
commit 4f43b46e5f
66 changed files with 24005 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
/* 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;
}