Merge pull request #16877 from mauriciofauth/issue-16437

Fix sticky top position when using smaller screen sizes
This commit is contained in:
Maurício Meneghini Fauth 2021-05-04 15:56:21 -03:00 committed by GitHub
commit c284e469ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 18 additions and 0 deletions

View File

@ -3572,6 +3572,10 @@ body .ui-dialog {
overflow-x: auto;
}
.sticky {
top: 0;
}
body#loginform div.container {
width: 100%;
}

View File

@ -3555,3 +3555,9 @@ body {
text-align: #{$left};
}
}
@media only screen and (max-width: 768px) {
.sticky {
top: 0;
}
}

View File

@ -3270,6 +3270,10 @@ body {
overflow-x: auto;
}
.sticky {
top: 0;
}
body#loginform div.container {
width: 100%;
}

View File

@ -3633,6 +3633,10 @@ body .ui-dialog {
overflow-x: auto;
}
.sticky {
top: 0;
}
body#loginform div.container {
width: 100%;
}