Adjust spacing for video grid rows to improve visual presentation

Modify CSS class in `netflix-grid.tsx` to remove bottom padding from category rows, aligning with design specifications.

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:41:58 +00:00
parent 67d533f88f
commit 1c79a7b57d

View File

@ -220,7 +220,7 @@ function CategoryRow({ category, onVideoClick }: CategoryRowProps) {
{/* Scrollable video row - true edge to edge */}
<div
ref={scrollRef}
className="flex gap-1 overflow-x-auto scrollbar-hide pb-2"
className="flex gap-1 overflow-x-auto scrollbar-hide pb-0"
style={{ scrollbarWidth: 'none', msOverflowStyle: 'none' }}
>
{category.videos.map((video, index) => (