diff options
author | Jan C. Borchardt <hey@jancborchardt.net> | 2020-08-20 18:32:31 +0200 |
---|---|---|
committer | Jan C. Borchardt <hey@jancborchardt.net> | 2020-08-20 18:32:31 +0200 |
commit | 66b77790fa129d2d9945c1d8e86ecbe38a7beb8f (patch) | |
tree | 9fc15c26207e9348b70f48d57bc4b60f87e45a9a /apps/dashboard/src | |
parent | f092d9c7048ea181c7116a078160e8f75e8253f5 (diff) | |
download | nextcloud-server-66b77790fa129d2d9945c1d8e86ecbe38a7beb8f.tar.gz nextcloud-server-66b77790fa129d2d9945c1d8e86ecbe38a7beb8f.zip |
Dashboard: Suppress scrollbars inside widgets
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/dashboard/src')
-rw-r--r-- | apps/dashboard/src/App.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/dashboard/src/App.vue b/apps/dashboard/src/App.vue index 26852f19b77..70cc75b675b 100644 --- a/apps/dashboard/src/App.vue +++ b/apps/dashboard/src/App.vue @@ -395,7 +395,8 @@ export default { & > .panel--content { margin: 0 16px 16px 16px; height: 420px; - overflow: auto; + // We specifically do not want scrollbars inside widgets + overflow: hidden; } // No need to extend height of widgets if only one column is shown |