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
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2020-07-31 01:48:37 +0300
committerGitHub <noreply@github.com>2020-07-31 01:48:37 +0300
commit103a0cb20c478f6f1eab25ad8b71c15a9574292c (patch)
tree599b833777fc1eef1ccc3408b0983b61bafbc765 /core
parent5d0ebe8ff601fd7d7d9cc321c65e84cd8ff29d39 (diff)
parent32505e78f6dc0baa451781fee18486f4c2e3efd8 (diff)
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.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 {