Browse Source

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.
tags/v20.0.0beta1
kevin147147 3 years ago
parent
commit
32505e78f6
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      core/css/header.scss

+ 1
- 1
core/css/header.scss View File

@@ -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 {

Loading…
Cancel
Save