add preloader to app
Deploy app frontend / app frontend (push) Successful in 2m52s

This commit is contained in:
2024-12-15 11:11:35 +02:00
parent 714f5b7b51
commit ae5da9f6d7
4 changed files with 23 additions and 4 deletions
+10 -1
View File
@@ -1,5 +1,9 @@
/* Общие стили */
body {
body.preloader #app {
display: none;
}
body.preloader {
display: flex;
justify-content: center;
align-items: center;
@@ -9,6 +13,11 @@ body {
}
#loader {
display: none;
}
body.preloader #loader {
display: block;
text-align: center;
padding: 7.5vh 7.5vw;
}