fixes
All checks were successful
build-website / build (push) Successful in 1m47s

This commit is contained in:
2025-09-21 17:49:58 +02:00
parent c35c2f80d1
commit 67ae33fc09
2 changed files with 47 additions and 7 deletions

View File

@@ -504,7 +504,8 @@ html {
position: relative;
z-index: 10;
height: 100%;
min-height: 100dvh;
min-height: 100vh; /* Fallback for browsers without dvh support */
min-height: 100dvh; /* Dynamic viewport height for Chrome mobile */
width: 100%;
display: grid;
grid-template-rows: 1fr auto;
@@ -516,6 +517,13 @@ html {
row-gap: clamp(2rem, 6vh, 4rem);
}
/* Ensure dvh support for modern browsers */
@supports (min-height: 100dvh) {
.hero-content {
min-height: 100dvh;
}
}
.hero-main {
width: min(720px, 100%);
margin: 0 auto;