diff --git a/apps/scandic-web/components/DestinationFilterAndSort/destinationFilterAndSort.module.css b/apps/scandic-web/components/DestinationFilterAndSort/destinationFilterAndSort.module.css index f8b51ddfc..918e7bf5e 100644 --- a/apps/scandic-web/components/DestinationFilterAndSort/destinationFilterAndSort.module.css +++ b/apps/scandic-web/components/DestinationFilterAndSort/destinationFilterAndSort.module.css @@ -5,7 +5,6 @@ align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.5); - align-items: center; z-index: var(--default-modal-overlay-z-index); } @@ -35,7 +34,8 @@ align-content: start; padding: var(--Space-x4) var(--Space-x3); overflow-y: auto; - height: min(calc(80dvh - 180px), 500px); + height: max-content; + max-height: calc(80dvh - 180px); } .alertWrapper:not(:empty) { diff --git a/packages/booking-flow/lib/components/SelectHotel/Filters/FilterAndSortModal/filterAndSortModal.module.css b/packages/booking-flow/lib/components/SelectHotel/Filters/FilterAndSortModal/filterAndSortModal.module.css index 3b5f5a1a0..31b5c87bf 100644 --- a/packages/booking-flow/lib/components/SelectHotel/Filters/FilterAndSortModal/filterAndSortModal.module.css +++ b/packages/booking-flow/lib/components/SelectHotel/Filters/FilterAndSortModal/filterAndSortModal.module.css @@ -125,7 +125,8 @@ .modal { left: 50%; bottom: 50%; - height: min(80dvh, 680px); + height: max-content; + max-height: 80dvh; width: min(80dvw, 960px); translate: -50% 50%; overflow-y: auto;