9 lines
162 B
CSS
9 lines
162 B
CSS
.hotelCards {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
margin-bottom: var(--Spacing-x2);
|
|
max-height: 100vh;
|
|
overflow-y: auto;
|
|
}
|