fix page paddings.

This commit is contained in:
Miroslav Šedivý 2022-07-18 23:11:13 +02:00
parent 2ef599b90e
commit 5b035e4348
2 changed files with 8 additions and 2 deletions

View File

@ -326,7 +326,6 @@
.members { .members {
display: block; display: block;
width: 100%; width: 100%;
padding: 5px;
overflow: hidden; overflow: hidden;
.member { .member {
@ -385,6 +384,11 @@
th { th {
text-align: right; text-align: right;
} }
input[type='text'] {
width: 100%;
box-sizing: border-box;
}
} }
.plugins { .plugins {

View File

@ -272,8 +272,10 @@
max-height: 100%; max-height: 100%;
flex-grow: 1; flex-grow: 1;
display: flex; display: flex;
flex-direction: column;
overflow: auto; overflow: auto;
padding-top: 5px; padding: 5px;
box-sizing: border-box;
} }
} }