diff options
author | Michael Weimann <mail@michael-weimann.eu> | 2018-10-04 22:09:28 +0200 |
---|---|---|
committer | Michael Weimann <mail@michael-weimann.eu> | 2018-10-07 13:59:40 +0200 |
commit | 14af19af58565d7e2dc3e9ed10f220b2e95b40bd (patch) | |
tree | d4585824f2adfecdd40e3ab58e5e0260f058b746 | |
parent | acffe7a74e4ecee330768af62115ccfb5d89fc51 (diff) | |
download | nextcloud-server-14af19af58565d7e2dc3e9ed10f220b2e95b40bd.tar.gz nextcloud-server-14af19af58565d7e2dc3e9ed10f220b2e95b40bd.zip |
Fixes the apps menu scrollbar
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
-rw-r--r-- | core/css/header.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/css/header.scss b/core/css/header.scss index 5b735df1bf5..cc4232ccd2b 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -329,7 +329,8 @@ nav[role='navigation'] { /* Apps management */ #apps { max-height: inherit; - overflow: auto; + overflow-x: hidden; + overflow-y: auto; -webkit-overflow-scrolling: touch; .in-header { display: none; |