From c4a81ea8a6f293f4b622a130b586616e1606d785 Mon Sep 17 00:00:00 2001 From: kevin147147 Date: Sat, 25 Jul 2020 23:45:38 +0200 Subject: [PATCH] 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. --- core/css/header.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/header.scss b/core/css/header.scss index afda272ea7..1851695f1e 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 {