fix: испралена ошибка с перезагрузкой при создании доски, небольшое исправление стилей

This commit is contained in:
Vladiysss
2026-02-20 23:52:42 +03:00
parent 616d5678c6
commit c4d00ac346
4 changed files with 66 additions and 41 deletions

View File

@@ -1,3 +1,9 @@
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.App {
text-align: center;
}
@@ -81,6 +87,13 @@ ul{
padding: 20px;
}
.app-container {
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
}
/* Страница входа */
.login-page {
background-color: #1f2430;
@@ -101,13 +114,20 @@ ul{
}
.page-container {
flex: 1 1 auto; /* растёт и заполняет остаток */
display: flex;
flex-direction: column;
overflow-x: auto;
box-sizing: border-box;
background-color: #1f2430;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
padding: 20px;
margin: 10px auto;
max-width: 1200px;
}
margin: 10px 0px;
max-width: 99%;
width: 100%; /* Занимает всю доступную ширину */
}
h2 {
text-align: center;