From: kevin147147 Date: Sat, 25 Jul 2020 21:45:38 +0000 (+0200) Subject: Fix height to big for iPhone when using many apps X-Git-Tag: v18.0.8RC1~35^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a5419e94313fafe3b199666c7d912043660b63fe;p=nextcloud-server.git 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. --- diff --git a/core/css/header.scss b/core/css/header.scss index dce6cf70927..1a56bc98d4f 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -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 {