From 66b77790fa129d2d9945c1d8e86ecbe38a7beb8f Mon Sep 17 00:00:00 2001 From: "Jan C. Borchardt" Date: Thu, 20 Aug 2020 18:32:31 +0200 Subject: [PATCH] Dashboard: Suppress scrollbars inside widgets Signed-off-by: Jan C. Borchardt --- apps/dashboard/src/App.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.39.5