Adjust video grid spacing and sizing for improved visual presentation
Update client/src/components/netflix-grid.tsx to modify the flex gap from 3 to 2 and adjust the width of video elements across different screen sizes. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 8e9f2b36-ec9c-4acc-b19b-5304fa9790c5 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/8e9f2b36-ec9c-4acc-b19b-5304fa9790c5/srjpoes
This commit is contained in:
parent
1caa063eed
commit
8148df4888
@ -247,13 +247,13 @@ function CategoryRow({ category, onVideoClick, hideScrollButtons = false }: Cate
|
||||
{/* Scrollable video row - true edge to edge */}
|
||||
<div
|
||||
ref={scrollRef}
|
||||
className="flex gap-3 overflow-x-auto scrollbar-hide pb-0 pl-4 pr-16"
|
||||
className="flex gap-2 overflow-x-auto scrollbar-hide pb-0 pl-4 pr-16"
|
||||
style={{ scrollbarWidth: 'none', msOverflowStyle: 'none' }}
|
||||
>
|
||||
{category.videos.map((video, index) => (
|
||||
<div
|
||||
key={video.id}
|
||||
className="flex-shrink-0 w-[280px] sm:w-[320px] md:w-[300px] lg:w-[320px] xl:w-[340px] relative group hover:z-30"
|
||||
className="flex-shrink-0 w-[200px] sm:w-[220px] md:w-[240px] lg:w-[260px] xl:w-[280px] relative group hover:z-30"
|
||||
onMouseEnter={() => setClickedVideoId(video.id)}
|
||||
>
|
||||
{/* Top 10 Number overlay for first category */}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user