diff options
author | kevin147147 <kevintamool@gmail.com> | 2020-07-25 23:45:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-25 23:45:38 +0200 |
commit | 32505e78f6dc0baa451781fee18486f4c2e3efd8 (patch) | |
tree | bc8a9dd38e388d344e3c28a31a5d94952d667928 /core/css/header.scss | |
parent | 34c3d0a97708b9d5cbd6a0667c4f0be881e7a6de (diff) | |
download | nextcloud-server-32505e78f6dc0baa451781fee18486f4c2e3efd8.tar.gz nextcloud-server-32505e78f6dc0baa451781fee18486f4c2e3efd8.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.
Diffstat (limited to 'core/css/header.scss')
-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 { |