prevent header from hiding when keyboard is active on mobile for username change

This commit is contained in:
Ginger Wong
2020-12-12 11:08:23 -08:00
parent 570f529f48
commit d4f5162505
3 changed files with 48 additions and 7 deletions

View File

@@ -202,10 +202,10 @@ header {
}
@media screen and (max-height: 500px) {
.single-col.touch-screen {
.single-col.touch-screen:not(.touch-keyboard-active) {
--header-height: 0px;
}
.single-col.touch-screen header {
.single-col.touch-screen:not(.touch-keyboard-active) header {
display: none;
}
}