From 896cfd548f7d139afd6d13a6d59d41230a153f60 Mon Sep 17 00:00:00 2001 From: Mackie Date: Thu, 4 Jun 2026 18:15:25 +0800 Subject: [PATCH] strip --- src/blocks/StatsStrip/Component.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/blocks/StatsStrip/Component.tsx b/src/blocks/StatsStrip/Component.tsx index 2ff28aa..78acc09 100644 --- a/src/blocks/StatsStrip/Component.tsx +++ b/src/blocks/StatsStrip/Component.tsx @@ -2,14 +2,15 @@ export function StatsStripBlock({ stats }: StatsStripProps) { if (!Array.isArray(stats) || stats.length === 0) return null return ( -
+ // Wrap in a container to match the max-width of your other blocks +
{stats.map((stat, i) => (
))}
-
+
) }