fix(SW-1827): change breakpoint for ipad to 900 for map view select hotel * fix(SW-1827): change breakpoint for ipad to 900 for map view select hotel Approved-by: Anton Gunnarsson Approved-by: Matilda Landström
49 lines
779 B
CSS
49 lines
779 B
CSS
.container {
|
|
max-width: var(--max-width);
|
|
height: 100vh;
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
|
|
.listingContainer {
|
|
display: none;
|
|
}
|
|
|
|
.skeletonContainer {
|
|
display: none;
|
|
overflow: hidden;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
margin-top: 20px;
|
|
gap: var(--Spacing-x2);
|
|
padding-top: var(--Spacing-x6);
|
|
height: 100%;
|
|
}
|
|
|
|
.skeletonItem {
|
|
width: 440px;
|
|
}
|
|
|
|
.mapContainer {
|
|
flex: 1;
|
|
}
|
|
|
|
@media (min-width: 900px) {
|
|
.container {
|
|
height: 100%;
|
|
}
|
|
.listingContainer {
|
|
background-color: var(--Base-Surface-Secondary-light-Normal);
|
|
padding: var(--Spacing-x3) var(--Spacing-x4);
|
|
overflow-y: auto;
|
|
max-width: 505px;
|
|
position: relative;
|
|
height: 100%;
|
|
display: block;
|
|
}
|
|
.skeletonContainer {
|
|
display: flex;
|
|
width: 360px;
|
|
}
|
|
}
|