style(dashboard): add vertical breathing room between dot rows

Widen the vertical step between the two dot rows so they're less cramped.
This commit is contained in:
Julien Calixte
2026-05-28 00:48:12 +02:00
parent 268769c26e
commit 421903aa89

View File

@@ -48,7 +48,7 @@ function formatDate(value: string | Date): string {
function dotStyle(index: number) { function dotStyle(index: number) {
return { return {
left: `${12 + (index % 5) * 11}%`, left: `${12 + (index % 5) * 11}%`,
top: `${24 + Math.floor(index / 5) * 20}%`, top: `${22 + Math.floor(index / 5) * 28}%`,
} }
} }
</script> </script>