Fix/SW-674 rate cards vertically aligned * fix(SW-674): fix cards aligned * fix(SW-674): fix columns for smaller ipad/tablet * fix(SW-674): fix height on flexibility options * fix(SW-674): fix comments * fix(SW-674): remove margin * fix(SW-674): auto fill with columns Approved-by: Simon.Emanuelsson Approved-by: Pontus Dreij Approved-by: Niclas Edenvin
25 lines
352 B
CSS
25 lines
352 B
CSS
.wrapper {
|
|
padding-bottom: var(--Spacing-x3);
|
|
}
|
|
|
|
.roomList {
|
|
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;
|
|
}
|
|
|
|
.roomList {
|
|
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
|
|
}
|