feat: add loading effect

This commit is contained in:
neru
2026-01-02 04:52:30 -03:00
parent a2e4637c8d
commit 1e5b9c8884
2 changed files with 92 additions and 48 deletions
+19
View File
@@ -2,3 +2,22 @@
width: 100vw !important;
height: 100vh !important;
}
.loader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: black;
z-index: 4444;
transition: opacity 1.0s ease-in-out;
pointer-events: none;
opacity: 1;
display: block;
}
.loader.hidden {
opacity: 0;
}