From 926ea39e9f5885dd84f20fb865c8e46c131dcf93 Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Wed, 3 Sep 2025 08:24:04 +0000 Subject: [PATCH] Adjust indicator dots for video carousels to be smaller Update the styling for carousel indicator dots in the `netflix-grid.tsx` component, reducing their size and slightly altering their active state scaling and inactive state opacity for a more subtle appearance. 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index 1fbb9be..1929a6c 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -398,10 +398,10 @@ function CategoryRow({ category, onVideoClick, hideScrollButtons = false }: Cate setCurrentIndex(index); } }} - className={`w-2 h-2 rounded-full transition-all duration-300 ${ + className={`w-1.5 h-1.5 rounded-full transition-all duration-300 ${ index === currentIndex - ? 'bg-gradient-to-r from-purple-500 to-blue-500 scale-125' - : 'bg-white/30 hover:bg-white/50' + ? 'bg-gradient-to-r from-purple-500 to-blue-500 scale-110' + : 'bg-white/20 hover:bg-white/30' }`} aria-label={`Go to card ${index + 1}`} />