From 38c58cdbd2d1e0549d975e30c8c9dc34760da971 Mon Sep 17 00:00:00 2001 From: Adrian Bonpin Date: Fri, 26 Jun 2026 21:57:13 +0800 Subject: [PATCH] style: add rounded corners to card images and hide scrollbars - Add rounded-xl to card images so corners match the card border radius - Replace scrollbar-thin with scrollbar-none on horizontal scroll containers --- app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index b8671ed..4e67fe7 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -121,7 +121,7 @@ function GameSection({ -
+
{games.map((game, idx) => ( ) : ( @@ -228,7 +228,7 @@ function SaleSection({
-
+
{games.map((game, idx) => { const discountPct = game.price_initial && game.price_current ? Math.round((1 - game.price_current / game.price_initial) * 100) @@ -250,7 +250,7 @@ function SaleSection({ src={game.capsule_image} alt={game.title} fill - className='object-cover group-hover:scale-[0.97] transition-transform duration-300' + className='object-cover rounded-xl group-hover:scale-[0.97] transition-transform duration-300' sizes='(max-width: 640px) 144px, 176px' /> ) : (