From 421903aa89f9287b0f665a7771e1da579f5597fd Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Thu, 28 May 2026 00:48:12 +0200 Subject: [PATCH] style(dashboard): add vertical breathing room between dot rows Widen the vertical step between the two dot rows so they're less cramped. --- app/components/DotMap.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/DotMap.vue b/app/components/DotMap.vue index 1e4007e..c496ec8 100644 --- a/app/components/DotMap.vue +++ b/app/components/DotMap.vue @@ -48,7 +48,7 @@ function formatDate(value: string | Date): string { function dotStyle(index: number) { return { left: `${12 + (index % 5) * 11}%`, - top: `${24 + Math.floor(index / 5) * 20}%`, + top: `${22 + Math.floor(index / 5) * 28}%`, } }