Reduce spacing between rows and category titles

Adjusted margin-bottom for the category row container and category titles in the netflix-grid component from `mb-2` to `mb-1` to decrease vertical spacing.

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/iazasnP
This commit is contained in:
sebastjanartic 2025-08-30 13:21:21 +00:00
parent 98c1dfab2b
commit 9f616d7d89

View File

@ -187,10 +187,10 @@ function CategoryRow({ category, onVideoClick }: CategoryRowProps) {
return (
<div
className="relative group mb-2"
className="relative group mb-1"
onMouseLeave={() => setClickedVideoId(null)}
>
<h2 className="text-2xl font-bold text-bunny-light mb-2 px-4">
<h2 className="text-2xl font-bold text-bunny-light mb-1 px-4">
{category.title}
</h2>