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
committerMorris Jobke <hey@morrisjobke.de>2020-07-31 11:25:07 +0300
commita5419e94313fafe3b199666c7d912043660b63fe (patch)
treee45ad3612014f548eb27ebbf5c02633e86022006 /core/css
parent6f5e64c9f8e4a0513641f0d52a0eaaed7261caed (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 dce6cf70927..1a56bc98d4f 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 {