diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-07-30 14:00:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-30 14:00:26 +0200 |
commit | d29e86b395003fbc7944c794a7b59d1ff4247d5b (patch) | |
tree | 5fd409b8d817e54ac931dbd69e84c2dac2050bb2 | |
parent | 566800b29c3376ede04439a92545059146f99505 (diff) | |
parent | fa54668bbc9838610894dfcd4e2d1f63651783dd (diff) | |
download | nextcloud-server-d29e86b395003fbc7944c794a7b59d1ff4247d5b.tar.gz nextcloud-server-d29e86b395003fbc7944c794a7b59d1ff4247d5b.zip |
Merge pull request #10447 from nextcloud/contactsmenu-height-fix
Fix contactsmenu overflow
-rw-r--r-- | core/css/styles.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/css/styles.scss b/core/css/styles.scss index 1269796b266..8996bee1cc3 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -818,7 +818,7 @@ span.ui-icon { } .content { - max-height: calc(100% - $header-height); + max-height: calc(100% - #{$header-height}); height: 100%; overflow-y: auto; |