Update video page layout for better responsiveness and wider display
Adjusts the container width and column layout in `VideoPage.tsx` to use a max-w-7xl container and change the flex direction from `xl:flex-row` to `lg:flex-row`, and modifies the sidebar width from `xl:w-80 2xl:w-96` to `lg:w-96` for improved responsiveness. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 344ec1e0-1186-4058-bbff-2e9619a7b1e0 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/344ec1e0-1186-4058-bbff-2e9619a7b1e0/FgaI1Sc
This commit is contained in:
parent
74896a357e
commit
5db02f02f3
@ -298,7 +298,7 @@ export default function VideoPage() {
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="w-full px-4 lg:px-6 relative">
|
||||
<div className="max-w-7xl mx-auto p-4 lg:p-6 relative">
|
||||
{/* Background logo decorations */}
|
||||
<div
|
||||
style={{
|
||||
@ -373,7 +373,7 @@ export default function VideoPage() {
|
||||
}}
|
||||
/>
|
||||
|
||||
<div className="flex flex-col xl:flex-row gap-6 relative z-[40]">
|
||||
<div className="flex flex-col lg:flex-row gap-6 relative z-[40]">
|
||||
{/* Main video section */}
|
||||
<div className="flex-1">
|
||||
{/* Video player */}
|
||||
@ -486,7 +486,7 @@ export default function VideoPage() {
|
||||
</div>
|
||||
|
||||
{/* Recommended videos sidebar */}
|
||||
<div className="w-full xl:w-80 2xl:w-96">
|
||||
<div className="w-full lg:w-96">
|
||||
<h2 className="text-lg font-semibold text-bunny-light mb-4">Empfohlene Videos</h2>
|
||||
|
||||
<div className="space-y-2">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user