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-04 22:09:28 +0200 |
commit | 32856197b9a6c8289c943f11e7b8b2a3c177c19b (patch) | |
tree | 668e48537bc907a18f039623edee986cc04ae984 /core | |
parent | fbe62e198594fcb130884e7e98f669ff4516b90b (diff) | |
download | nextcloud-server-32856197b9a6c8289c943f11e7b8b2a3c177c19b.tar.gz nextcloud-server-32856197b9a6c8289c943f11e7b8b2a3c177c19b.zip |
Fixes the apps menu scrollbar
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
Diffstat (limited to 'core')
-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 d974c2992e9..af98e20a9d3 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; |