23 lines
348 B
CSS
23 lines
348 B
CSS
.roomList {
|
|
list-style: none;
|
|
display: grid;
|
|
gap: var(--Spacing-x3);
|
|
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
|
|
}
|
|
|
|
.roomList > li {
|
|
width: 100%;
|
|
}
|
|
|
|
.roomList input[type="radio"] {
|
|
opacity: 0;
|
|
position: fixed;
|
|
width: 0;
|
|
}
|
|
|
|
.hotelAlert {
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
padding: var(--Spacing-x-one-and-half);
|
|
}
|