From 6b6c1b98be764d49504a69e9aa4a082a7da6ce59 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Wed, 21 May 2025 12:03:11 +0200 Subject: [PATCH] Ensure system graphs can wrap on mobile --- dashboard/src/views/SystemView.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dashboard/src/views/SystemView.vue b/dashboard/src/views/SystemView.vue index 79ba286fd..2b68deeb3 100644 --- a/dashboard/src/views/SystemView.vue +++ b/dashboard/src/views/SystemView.vue @@ -123,7 +123,8 @@ onMounted(async () => { .graphs { display: flex; - gap: 60px; + gap: 20px; + flex-wrap: wrap; justify-content: space-between; }