Files
web/apps/partner-sas/app/[lang]/page.module.css
Anton Gunnarsson d6ed81d90b Merged in fix/sw-3648-fix-hero-gradient (pull request #3277)
fix(SW-3648): Correct hero gradient colors

* Fix hero gradient colors


Approved-by: Linus Flood
2025-12-02 12:28:25 +00:00

63 lines
1.2 KiB
CSS

.mainContent {
/* Calculate height for large screens and displays */
height: calc(100dvh - 100px);
min-height: 480px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
background: linear-gradient(
color-mix(in srgb, var(--Scandic-Grey-100) 8%, transparent),
color-mix(in srgb, var(--SAS-Blue-20) 40%, transparent)
);
}
.contentContainer {
display: flex;
flex-direction: column;
gap: var(--Space-x3);
height: 100%;
justify-content: space-evenly;
@media (min-width: 768px) {
justify-content: center;
}
}
.bookingWidgetWrapper {
display: flex;
flex-direction: column;
gap: var(--Space-x3);
}
.heading {
text-transform: uppercase;
text-align: center;
text-wrap: balance;
color: white;
text-shadow: black 0px 0px 16px;
}
.backdrop {
position: absolute;
inset: 0;
display: block;
height: 100%;
width: 100%;
object-fit: cover;
z-index: -1;
}
.infoBoxes {
width: var(--max-width-content);
margin: 0 auto;
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: var(--Space-x2);
@media (min-width: 768px) {
gap: var(--Space-x3);
grid-template-columns: repeat(2, 1fr);
}
}