Improve video display to show full edges when expanded

Adjust CSS to make video containers visible edge-to-edge by changing overflow properties from 'hidden' to 'visible' in `home.tsx` and increasing padding in `netflix-grid.tsx`.

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/fyyFszO
This commit is contained in:
sebastjanartic 2025-09-01 16:05:36 +00:00
parent 71e42cb107
commit 5e64af4d06
3 changed files with 2 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 347 KiB

View File

@ -242,7 +242,7 @@ function CategoryRow({ category, onVideoClick, hideScrollButtons = false }: Cate
<h2 className="text-lg font-medium text-bunny-light mb-1 mx-2 leading-tight uppercase relative z-10">
{category.title}
</h2>
<div className="relative overflow-visible py-2">
<div className="relative overflow-visible py-6">
{/* Scrollable video row - true edge to edge */}
<div

View File

@ -76,7 +76,7 @@ export default function Home() {
return (
<div className="has-fixed-header" style={{minHeight: '100vh', background: 'linear-gradient(135deg, hsl(250, 50%, 15%) 0%, hsl(240, 30%, 25%) 100%)', color: 'white'}}>
{/* STICKY HEADER */}
<div className="header-sticky bg-transparent overflow-hidden">
<div className="header-sticky bg-transparent overflow-visible">
<div className="max-w-[960px] mx-auto pl-4 pr-4 py-4">
<div className="flex items-center justify-between">
{/* Left side - Logo */}