From 8716a2aae0e939054d7f3933226f46c232a53ea8 Mon Sep 17 00:00:00 2001
From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com>
Date: Sat, 30 Aug 2025 12:50:03 +0000
Subject: [PATCH] Improve scrolling experience by adjusting video grid spacing
Adjusted padding and margins in the Netflix grid component to allow for true edge-to-edge display of videos and ensure sufficient space for scroll buttons on various screen sizes.
Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 074b0e4c-6171-43bd-aa98-f9e04623ca14
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/074b0e4c-6171-43bd-aa98-f9e04623ca14/6upLu3q
---
client/src/components/netflix-grid.tsx | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx
index 49d7153..08de1e2 100644
--- a/client/src/components/netflix-grid.tsx
+++ b/client/src/components/netflix-grid.tsx
@@ -158,33 +158,33 @@ function CategoryRow({ category, onVideoClick }: CategoryRowProps) {
{category.title}
-
+
{/* Left scroll button */}
{/* Right scroll button */}
- {/* Scrollable video row - full width edge to edge */}
+ {/* Scrollable video row - true edge to edge */}
{category.videos.map((video, index) => (
-
+
{/* Top 10 Number overlay for first category */}
{category.title.includes("Top 10") && index < 10 && (