fix: remove CSS conflicts preventing iOS video from extending under notch
All checks were successful
build-website / build (push) Successful in 1m33s

- Removed incorrect height calculation that added safe areas to video height
- Removed conflicting absolute positioning from main.css
- Video container now properly uses fixed positioning on mobile
- Desktop layout preserved with absolute positioning

The video now correctly extends edge-to-edge under the iOS notch/Dynamic Island
This commit is contained in:
2025-09-21 13:27:16 +02:00
parent b97be94e2f
commit cea7577b52
2 changed files with 6 additions and 10 deletions

View File

@@ -425,11 +425,7 @@ html {
.hero-video-container {
position: absolute;
/* Simple positioning - fill entire parent container */
top: 0;
left: 0;
right: 0;
bottom: 0;
inset: 0;
width: 100%;
height: 100%;
overflow: hidden;