diff options
author | kevin147147 <kevintamool@gmail.com> | 2020-07-25 23:45:38 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2020-07-30 22:50:31 +0000 |
commit | c4a81ea8a6f293f4b622a130b586616e1606d785 (patch) | |
tree | 73edd5cef208160a30110d86016156779e06a0c0 | |
parent | dba3b513e3b102a2d65ace195b5f69e05739c970 (diff) | |
download | nextcloud-server-c4a81ea8a6f293f4b622a130b586616e1606d785.tar.gz nextcloud-server-c4a81ea8a6f293f4b622a130b586616e1606d785.zip |
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.
-rw-r--r-- | core/css/header.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/css/header.scss b/core/css/header.scss index afda272ea78..1851695f1ea 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 { |