Files
web/apps/scandic-web/components/Footer/footer.module.css
Simon.Emanuelsson 1108105580 Merged in feat/SW-1762 (pull request #2050)
feat: make enter details bottom sheet pixed, and add spacing at the bottom of page

* feat: make enter details bottom sheet pixed, and add spacing at the bottom of page


Approved-by: Arvid Norlin
2025-05-12 10:19:39 +00:00

19 lines
452 B
CSS

.footer {
--bottom-sheet-height: 7.5em;
--promo-height: 50px;
margin-top: auto;
}
@media screen and (max-width: 1366px) {
:has([data-footer-spacing]) ~ .footer {
background: var(--Base-Text-High-contrast);
padding-bottom: var(--bottom-sheet-height);
}
:has([data-footer-spacing-signup]) ~ .footer {
background: var(--Base-Text-High-contrast);
padding-bottom: calc(var(--bottom-sheet-height) + var(--promo-height));
}
}