From 5dcafe03f9beae957b9fd4f641a6cd7d4a43ea9b Mon Sep 17 00:00:00 2001 From: Alfredo Cardigliano Date: Mon, 14 Jul 2025 14:50:32 +0200 Subject: [PATCH] Use small breakpoint (sm) cards in dashboard to be responsive --- http_src/vue/dashboard-box.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http_src/vue/dashboard-box.vue b/http_src/vue/dashboard-box.vue index 23e0bc1e37..1142d59cd9 100644 --- a/http_src/vue/dashboard-box.vue +++ b/http_src/vue/dashboard-box.vue @@ -29,7 +29,7 @@ const props = defineProps({ }); const width_class = computed(() => { - return `col-${props.width || 4}`; + return `col-sm-${props.width || 4}`; }); const height_class = computed(() => {