From a7ee41a2c47c9184a92655ea09d88ec7856a35ce Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Wed, 3 Sep 2025 08:26:44 +0000 Subject: [PATCH] Adjust display of navigation indicators for video carousels Update the styling and size of the pagination indicators in the video category rows to improve visual consistency and responsiveness. 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 | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index 407a158..fff6f27 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -398,11 +398,16 @@ function CategoryRow({ category, onVideoClick, hideScrollButtons = false }: Cate setCurrentIndex(index); } }} - className={`w-0.5 h-0.5 rounded-full transition-all duration-300 ${ + className={`rounded-full transition-all duration-300 ${ index === currentIndex - ? 'bg-gradient-to-r from-purple-500 to-blue-500 scale-150' + ? 'bg-gradient-to-r from-purple-500 to-blue-500' : 'bg-white/15 hover:bg-white/25' }`} + style={{ + width: '3px', + height: '3px', + transform: index === currentIndex ? 'scale(1.3)' : 'scale(1)' + }} aria-label={`Go to card ${index + 1}`} /> ))}