From db42b4691f370576931d7e345c9fe0838116565d Mon Sep 17 00:00:00 2001 From: "Jan C. Borchardt" Date: Thu, 20 Aug 2020 12:38:17 +0200 Subject: [PATCH] Dashboard: No need to extend height of widgets if only one column is shown Signed-off-by: Jan C. Borchardt --- apps/dashboard/src/App.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/dashboard/src/App.vue b/apps/dashboard/src/App.vue index ac7112c8d93..cd7b5140e25 100644 --- a/apps/dashboard/src/App.vue +++ b/apps/dashboard/src/App.vue @@ -392,6 +392,13 @@ export default { height: 420px; overflow: auto; } + + // No need to extend height of widgets if only one column is shown + @media only screen and (max-width: 709px) { + & > .panel--content { + height: auto; + } + } } .footer { -- 2.39.5