Replace visibility jank with display
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Hamcha 2020-06-21 13:12:40 +02:00
parent 8bfbdd9f26
commit 9a6fc62179
Signed by: hamcha
GPG Key ID: 41467804B19A3315
1 changed files with 23 additions and 21 deletions

View File

@ -64,13 +64,14 @@ body {
display: grid; display: grid;
overflow: hidden; overflow: hidden;
.page { .page {
visibility: hidden; //visibility: hidden;
display: none;
overflow-y: scroll; overflow-y: scroll;
grid-row: 1; grid-row: 1;
grid-column: 1; grid-column: 1;
&.active { &.active {
visibility: visible; //visibility: visible;
} display: inherit;
&.waiting { &.waiting {
user-select: none; user-select: none;
position: fixed; position: fixed;
@ -94,6 +95,7 @@ body {
} }
} }
} }
}
h1.pageheader { h1.pageheader {
margin-top: 0; margin-top: 0;