Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core/css
diff options
context:
space:
mode:
authorkevin147147 <kevintamool@gmail.com>2020-07-26 00:45:38 +0300
committerGitHub <noreply@github.com>2020-07-26 00:45:38 +0300
commit32505e78f6dc0baa451781fee18486f4c2e3efd8 (patch)
treebc8a9dd38e388d344e3c28a31a5d94952d667928 /core/css
parent34c3d0a97708b9d5cbd6a0667c4f0be881e7a6de (diff)
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')
-rw-r--r--core/css/header.scss2
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 {