Files
web/components/HotelReservation/SelectHotel/SelectHotelMap/HotelListing/hotelListing.module.css
2024-11-22 17:05:29 +01:00

32 lines
470 B
CSS

.hotelListing {
display: none;
}
.hotelListingMobile {
display: none;
overflow-x: auto;
position: absolute;
bottom: 32px;
left: 0;
right: 0;
z-index: 10;
}
.hotelListingMobile[data-open="true"] {
display: flex;
}
@media (min-width: 768px) {
.hotelListing {
display: block;
width: 100%;
overflow-y: auto;
padding-top: var(--Spacing-x2);
}
.hotelListingMobile,
.hotelListingMobile[data-open="true"] {
display: none;
}
}