Files
web/components/HotelReservation/SelectRate/RoomSelection/roomSelection.module.css
2024-10-10 10:48:02 +02:00

46 lines
720 B
CSS

.wrapper {
padding-bottom: var(--Spacing-x3);
}
.roomList {
margin-top: var(--Spacing-x4);
list-style: none;
display: grid;
grid-template-columns: 1fr;
gap: var(--Spacing-x3);
}
.roomList > li {
width: 100%;
}
.roomList input[type="radio"] {
opacity: 0;
position: fixed;
width: 0;
}
.summary {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: white;
padding: var(--Spacing-x3) var(--Spacing-x7) var(--Spacing-x5);
}
@media (min-width: 767px) {
.roomList {
grid-template-columns: minmax(240px, 1fr) minmax(240px, 1fr) minmax(
240px,
1fr
);
}
}
@media (min-width: 1367px) {
.roomList {
grid-template-columns: 1fr 1fr 1fr 1fr;
}
}