feat: Hide the global header on video player pages and ensure video content always uses full screen height.

This commit is contained in:
Yusuf İpek
2026-02-10 14:59:23 +03:00
parent ca65cf8f58
commit 298b4ed3cc
2 changed files with 12 additions and 8 deletions
+1 -1
View File
@@ -1370,7 +1370,7 @@ export function VideoPageContent({ mode, videoId, projectId: propProjectId }: Vi
}
};
const containerHeight = mode === 'dashboard' ? 'h-[calc(100vh-3.5rem)]' : 'h-screen';
const containerHeight = 'h-screen';
const backHref = mode === 'dashboard'
? `/projects/${propProjectId}`
: (video?.projectId ? `/projects/${video.projectId}` : '/');