Feat/SW-454 Create select rate page foundation * Extract select-rate page to its own, fixed route * Rename availability to hotelsAvailability * Update availability hotels response * Number to string Approved-by: Pontus Dreij
31 lines
474 B
CSS
31 lines
474 B
CSS
.wrapper {
|
|
border-bottom: 1px solid rgba(17, 17, 17, 0.2);
|
|
padding-bottom: var(--Spacing-x3);
|
|
}
|
|
|
|
.roomList {
|
|
margin-top: var(--Spacing-x4);
|
|
list-style: none;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr 1fr;
|
|
column-gap: var(--Spacing-x2);
|
|
row-gap: var(--Spacing-x4);
|
|
}
|
|
|
|
.roomList > li {
|
|
width: 100%;
|
|
}
|
|
|
|
.roomList input[type="radio"] {
|
|
opacity: 0;
|
|
position: fixed;
|
|
width: 0;
|
|
}
|
|
|
|
.summary {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|