feat(SW-2038): refactor and create wrapper for static map and button * feat(SW-2038): refactor and create wrapper for static map and button * feature: use button from design-system over creating a new one * remove unused fragment * fix(SW-2038): add removed css * fix(SW-2038): update fake button component * fix(SW-2038): move FakeButton to design system Approved-by: Erik Tiekstra Approved-by: Joakim Jäderberg
116 lines
1.6 KiB
CSS
116 lines
1.6 KiB
CSS
.main {
|
|
display: flex;
|
|
background-color: var(--Scandic-Brand-Warm-White);
|
|
min-height: min(100dvh, 750px);
|
|
flex-direction: column;
|
|
max-width: var(--max-width-page);
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.header {
|
|
padding: var(--Space-x3) 0 var(--Space-x2);
|
|
}
|
|
|
|
.headerContent {
|
|
max-width: var(--max-width-page);
|
|
margin: 0 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x2);
|
|
}
|
|
|
|
.cityInformation {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: var(--Space-x1);
|
|
align-items: baseline;
|
|
}
|
|
|
|
.sorter {
|
|
display: none;
|
|
}
|
|
|
|
.sideBar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.sideBarItem {
|
|
display: none;
|
|
}
|
|
|
|
.link {
|
|
display: none;
|
|
}
|
|
|
|
.hotelList {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x3);
|
|
}
|
|
|
|
.filter {
|
|
display: none;
|
|
}
|
|
|
|
.skeletonContainer .title {
|
|
margin-bottom: var(--Space-x3);
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.main {
|
|
padding: var(--Space-x5) 0;
|
|
flex-direction: row;
|
|
gap: var(--Space-x5);
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.headerContent {
|
|
display: block;
|
|
}
|
|
|
|
.header {
|
|
background-color: var(--Base-Surface-Subtle-Normal);
|
|
padding: var(--Space-x4) 0 var(--Space-x3);
|
|
}
|
|
|
|
.sorter {
|
|
display: block;
|
|
width: 339px;
|
|
}
|
|
|
|
.title {
|
|
margin: 0 auto;
|
|
display: flex;
|
|
max-width: var(--max-width-navigation);
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.sideBar {
|
|
max-width: 340px;
|
|
}
|
|
|
|
.sideBarItem {
|
|
display: block;
|
|
}
|
|
|
|
.filter {
|
|
display: block;
|
|
}
|
|
|
|
.link {
|
|
display: flex;
|
|
margin-bottom: var(--Space-x6);
|
|
}
|
|
|
|
.skeletonContainer .title {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.skeletonContainer .sideBar {
|
|
gap: var(--Space-x3);
|
|
}
|
|
}
|