Skip to content
Snippets Groups Projects

Loading screen implementation

Merged Swostik Pati requested to merge loading-screen into main
4 files
+ 77
3
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 20
0
.loading-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
background-color: var(--cream);
}
.loading-gif {
width: 150px; /* Adjust the size as needed */
height: 150px; /* Adjust the size as needed */
}
.loading-container p {
margin-top: 10px;
font-size: 18px;
color: var(--dark-blue);
font: var(--primary-font);
}
Loading