splash screen fix (#6)

Reviewed-on: #6
This commit is contained in:
Hendrik Niefeld 2023-11-13 20:56:48 +01:00
parent d5a510e87c
commit b1f04c2205
2 changed files with 23 additions and 17 deletions

View File

@ -38,7 +38,7 @@ COLORS
LAYOUT LAYOUT
----------------------------------------------------*/ ----------------------------------------------------*/
.splashContent { .splashContent {
min-height: 86vh; min-height: calc(100vh -190px);
} }
.splashCta { .splashCta {
position: -webkit-sticky; position: -webkit-sticky;
@ -107,6 +107,12 @@ IMAGES
object-fit: none; object-fit: none;
} }
} }
@media only screen and (max-height: 650px) {
.imageCropSplash {
height: 192px;
object-fit: none;
}
}
.imageCrop { .imageCrop {
object-fit: none; object-fit: none;
} }