From b91068ac64e2329dbfb79f556ef001b2d0afdd76 Mon Sep 17 00:00:00 2001 From: Adrian Bonpin Date: Fri, 26 Jun 2026 21:58:20 +0800 Subject: [PATCH] fix: prevent vertical overscroll on card scroll containers --- app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index 4e67fe7..f76e662 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -121,7 +121,7 @@ function GameSection({ -
+
{games.map((game, idx) => (
-
+
{games.map((game, idx) => { const discountPct = game.price_initial && game.price_current ? Math.round((1 - game.price_current / game.price_initial) * 100)