diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-07-31 00:48:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-31 00:48:37 +0200 |
commit | 103a0cb20c478f6f1eab25ad8b71c15a9574292c (patch) | |
tree | 599b833777fc1eef1ccc3408b0983b61bafbc765 /core | |
parent | 5d0ebe8ff601fd7d7d9cc321c65e84cd8ff29d39 (diff) | |
parent | 32505e78f6dc0baa451781fee18486f4c2e3efd8 (diff) | |
download | nextcloud-server-103a0cb20c478f6f1eab25ad8b71c15a9574292c.tar.gz nextcloud-server-103a0cb20c478f6f1eab25ad8b71c15a9574292c.zip |
Merge pull request #22005 from kevin147147/patch-6
Fix height to big for iPhone when using many apps
Diffstat (limited to 'core')
-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 { |