forked from hamcha/tghandbook
Replace visibility jank with display
This commit is contained in:
parent
8bfbdd9f26
commit
9a6fc62179
1 changed files with 23 additions and 21 deletions
|
@ -64,13 +64,14 @@ body {
|
|||
display: grid;
|
||||
overflow: hidden;
|
||||
.page {
|
||||
visibility: hidden;
|
||||
//visibility: hidden;
|
||||
display: none;
|
||||
overflow-y: scroll;
|
||||
grid-row: 1;
|
||||
grid-column: 1;
|
||||
&.active {
|
||||
visibility: visible;
|
||||
}
|
||||
//visibility: visible;
|
||||
display: inherit;
|
||||
&.waiting {
|
||||
user-select: none;
|
||||
position: fixed;
|
||||
|
@ -94,6 +95,7 @@ body {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
h1.pageheader {
|
||||
margin-top: 0;
|
||||
|
|
Loading…
Reference in a new issue