fix: comprehensive safe area implementation fixes for iOS video display
All checks were successful
build-website / build (push) Successful in 1m46s

- Remove overflow-x: hidden from HeroSection.vue that was clipping video
- Delete duplicate .hero-video-container styles from voyage-layout.css
- Fix navigation to use env() directly instead of CSS variables
- Remove deprecated constant() syntax
- Add safe-area-test.html for testing safe area extension

The video should now properly extend under the iOS notch/Dynamic Island
while keeping content within safe areas.
This commit is contained in:
2025-09-21 18:22:06 +02:00
parent a9217b54cb
commit 69e4a22354
3 changed files with 166 additions and 32 deletions

View File

@@ -237,9 +237,9 @@ onMounted(() => {
pointer-events: none;
}
/* Container to prevent horizontal overflow */
/* Container for hero section */
.hero-voyage {
overflow-x: hidden !important;
/* Allow video to extend into safe area - no overflow clipping */
max-width: 100vw !important;
position: relative;
min-height: 100vh;