From 945d0dc96d69d05f090a6c6cb077184648109746 Mon Sep 17 00:00:00 2001 From: Adrian Bonpin Date: Fri, 26 Jun 2026 21:59:59 +0800 Subject: [PATCH] fix: prevent vertical overflow on card scroll containers - Add overflow-y-hidden to all three card containers (skeleton, GameSection, SaleSection) - Keeps horizontal scrolling but prevents any vertical scroll --- app/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index f76e662..b815055 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -55,7 +55,7 @@ function SkeletonSections() { className='space-y-3' >
-
+
{[1, 2, 3, 4].map((j) => (
-
+
{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)