From 26fc600266e536743ca334590a013ff241376519 Mon Sep 17 00:00:00 2001 From: Adrian Bonpin Date: Fri, 26 Jun 2026 22:00:58 +0800 Subject: [PATCH] fix: replace horizontal scroll with flex-wrap on card rows - Remove overflow-x-auto so cards don't capture scroll events - Cards now wrap naturally into rows with flex-wrap - Main page scrolling works normally even when cursor is over cards --- app/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index b815055..9c548f8 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)