Adjust spacing and alignment for improved visual presentation
Modify margin-bottom for category titles and navigation dots in the Netflix grid component to refine visual spacing. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 946a0075-7e32-454b-b348-9e7f576d7f45 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/60d372ff-2c10-46c7-b01b-10c3435136b0/946a0075-7e32-454b-b348-9e7f576d7f45/JlONw6J
This commit is contained in:
parent
47f50b4185
commit
ad1cbbde2f
@ -377,7 +377,7 @@ function CategoryRow({ category, onVideoClick, hideScrollButtons = false }: Cate
|
||||
className="relative"
|
||||
onMouseLeave={() => setClickedVideoId(null)}
|
||||
>
|
||||
<h2 className="text-lg font-medium text-bunny-light mb-4 md:mb-1 mx-2 leading-tight uppercase">
|
||||
<h2 className="text-lg font-medium text-bunny-light mb-2 md:mb-1 mx-2 leading-tight uppercase">
|
||||
{category.title}
|
||||
</h2>
|
||||
<div className="relative overflow-hidden">
|
||||
@ -455,7 +455,7 @@ function CategoryRow({ category, onVideoClick, hideScrollButtons = false }: Cate
|
||||
</div>
|
||||
|
||||
{/* Mobile navigation dots - only visible on mobile, under all video rows */}
|
||||
<div className="md:hidden flex justify-center mt-2 mb-4 gap-1 py-1">
|
||||
<div className="md:hidden flex justify-center mt-2 mb-2 gap-1 py-1">
|
||||
{Array.from({ length: Math.min(10, category.videos.length) }, (_, index) => (
|
||||
<button
|
||||
key={`dot-${category.title}-${index}`}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user