Fix height to big for iPhone when using many apps

Same story as https://github.com/nextcloud/server/pull/10276
I'm testing on iPhone without home button. These devices now have an even higher bottom bar.
This commit is contained in:
kevin147147 2020-07-25 23:45:38 +02:00 committed by backportbot[bot]
parent dba3b513e3
commit c4a81ea8a6
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@
@mixin header-menu-height() {
min-height: calc(44px * 1.5); // show at least 1.5 entries
max-height: calc(100vh - #{$header-height} * 2);
max-height: calc(100vh - #{$header-height} * 4);
}
#header {