From ae64f1e4bf509d41027f32fb1737cf2421a8fad7 Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Wed, 3 Sep 2025 08:28:58 +0000 Subject: [PATCH] Improve navigation indicators in video carousels Update the size and scale of carousel navigation indicators from 4px to 16px, and adjust the scale factor for the current item. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 2cd2c0bc-434c-4bc9-ad3f-b99d3897a0d1 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/2cd2c0bc-434c-4bc9-ad3f-b99d3897a0d1/OdlP8Wj --- client/src/components/netflix-grid.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index 09f866f..494d0a7 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -404,11 +404,11 @@ function CategoryRow({ category, onVideoClick, hideScrollButtons = false }: Cate : 'bg-white/15 hover:bg-white/25' }`} style={{ - width: '4px', - height: '4px', - minWidth: '4px', - minHeight: '4px', - transform: index === currentIndex ? 'scale(1.3)' : 'scale(1)' + width: '16px', + height: '16px', + minWidth: '16px', + minHeight: '16px', + transform: index === currentIndex ? 'scale(1.2)' : 'scale(1)' }} aria-label={`Go to card ${index + 1}`} />