fix: испралена ошибка с перезагрузкой при создании доски, небольшое исправление стилей
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -77,9 +77,10 @@
|
||||
.pagination {
|
||||
background-color: #2b3245;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
margin-top: 16px;
|
||||
flex-wrap: wrap;
|
||||
padding: 10px;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
@@ -8,44 +8,47 @@
|
||||
}
|
||||
|
||||
.header {
|
||||
background-color: #1f2430;
|
||||
padding: 0;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
height: 56px;
|
||||
flex: 0 0; /* не растёт, не сжимается, высота по контенту */
|
||||
background-color: #1f2430;
|
||||
padding: 0;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
height: 56px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.header-container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 0 1rem;
|
||||
height: 56px;
|
||||
max-width: 1200px;
|
||||
box-sizing: border-box;
|
||||
padding-left: 20px;
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 56px;
|
||||
}
|
||||
|
||||
.logo h1 {
|
||||
font-family: 'Roboto Regular';
|
||||
margin: 0;
|
||||
font-size: 24px;
|
||||
color: #CAD1D8;
|
||||
text-decoration: none;
|
||||
font-family: 'Roboto Regular';
|
||||
margin: 0;
|
||||
font-size: 24px;
|
||||
color: #CAD1D8;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
h1:hover {
|
||||
color: white;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.logo a {
|
||||
text-decoration: none;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.nav-list {
|
||||
opacity: 0;
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
opacity: 0;
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.nav-list.visible {
|
||||
@@ -54,26 +57,26 @@ h1:hover {
|
||||
|
||||
.nav-list li {
|
||||
|
||||
padding: 0 1rem;
|
||||
height: 56px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 0 1rem;
|
||||
height: 56px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-list li:hover {
|
||||
box-shadow: #08e8de 0px -2px inset;
|
||||
background-color: rgba(0, 0, 0, 0.25) ;
|
||||
box-shadow: #08e8de 0px -2px inset;
|
||||
background-color: rgba(0, 0, 0, 0.25) ;
|
||||
}
|
||||
|
||||
.nav-list a {
|
||||
text-decoration: none;
|
||||
color: #CAD1D8;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 18px;
|
||||
height: 56px;
|
||||
text-decoration: none;
|
||||
color: #CAD1D8;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 18px;
|
||||
height: 56px;
|
||||
}
|
||||
|
||||
.nav-list a:hover {
|
||||
color: white;
|
||||
color: white;
|
||||
}
|
||||
Reference in New Issue
Block a user