Поправлен flex. Добавлены титлы для страниц

This commit is contained in:
FrigaT
2026-04-15 20:31:50 +03:00
parent 203506be28
commit 9da342be3e
6 changed files with 22 additions and 3 deletions

View File

@@ -26,12 +26,23 @@
body {
background-color: var(--mud-palette-background, var(--bg));
margin: 0;
align-items: center;
font-family: 'Roboto', sans-serif;
}
/* Создаем специальный контейнер для загрузки на весь экран */
#app:empty,
#app > .loader-wrapper {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
font-family: 'Roboto', sans-serif;
width: 100vw;
position: fixed;
top: 0;
left: 0;
background-color: #1a1a27; /* Фиксированный фон на время загрузки */
z-index: 9999;
}
.loader-wrapper {