From: Jan C. Borchardt Date: Thu, 20 Aug 2020 10:38:17 +0000 (+0200) Subject: Dashboard: No need to extend height of widgets if only one column is shown X-Git-Tag: v20.0.0beta1~12^2~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=db42b4691f370576931d7e345c9fe0838116565d;p=nextcloud-server.git Dashboard: No need to extend height of widgets if only one column is shown Signed-off-by: Jan C. Borchardt --- 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 {