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.
This commit is contained in:
parent
dba3b513e3
commit
c4a81ea8a6
|
@ -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…
Reference in New Issue