feat(SW-2873): Move select-hotel to booking flow * crude setup of select-hotel in partner-sas * wip * Fix linting * restructure tracking files * Remove dependency on trpc in tracking hooks * Move pageview tracking to common * Fix some lint and import issues * Add AlternativeHotelsPage * Add SelectHotelMapPage * Add AlternativeHotelsMapPage * remove next dependency in tracking store * Remove dependency on react in tracking hooks * move isSameBooking to booking-flow * Inject searchParamsComparator into tracking store * Move useTrackHardNavigation to common * Move useTrackSoftNavigation to common * Add TrackingSDK to partner-sas * call serverclient in layout * Remove unused css * Update types * Move HotelPin type * Fix todos * Merge branch 'master' into feat/sw-2873-move-selecthotel-to-booking-flow * Merge branch 'master' into feat/sw-2873-move-selecthotel-to-booking-flow * Fix component Approved-by: Joakim Jäderberg
92 lines
1.8 KiB
CSS
92 lines
1.8 KiB
CSS
.container {
|
|
border: 1px solid var(--Base-Border-Subtle);
|
|
border-radius: var(--Corner-radius-md);
|
|
min-width: 358px;
|
|
background: var(--Base-Surface-Primary-light-Normal);
|
|
box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.1);
|
|
position: relative;
|
|
}
|
|
|
|
.content {
|
|
padding: var(--Space-x15);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x15);
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
gap: var(--Space-x15);
|
|
}
|
|
|
|
.name {
|
|
height: 48px;
|
|
max-width: 180px;
|
|
margin-bottom: var(--Space-x05);
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.facilities {
|
|
display: flex;
|
|
gap: 0 var(--Space-x15);
|
|
}
|
|
|
|
.priceCard {
|
|
border-radius: var(--Corner-radius-md);
|
|
padding: var(--Space-x05) var(--Space-x1);
|
|
background: var(--Base-Surface-Secondary-light-Normal);
|
|
margin-top: var(--Space-x1);
|
|
}
|
|
|
|
.prices {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x1);
|
|
justify-content: space-between;
|
|
}
|
|
.bottomContainer {
|
|
display: flex;
|
|
border-top: 1px solid var(--Primary-Light-On-Surface-Divider-subtle);
|
|
padding-top: var(--Space-x2);
|
|
padding-bottom: var(--Space-x05);
|
|
}
|
|
|
|
.pricesContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
height: 44px;
|
|
}
|
|
|
|
.listingPrices {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: var(--Space-x1);
|
|
}
|
|
|
|
.content .button {
|
|
margin-top: auto;
|
|
}
|
|
|
|
.closeButton {
|
|
position: absolute;
|
|
top: 8px;
|
|
right: 8px;
|
|
}
|
|
|
|
.notEnoughPointsButton {
|
|
border-radius: var(--Corner-radius-rounded);
|
|
border-width: 2px;
|
|
border-style: solid;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: var(--Space-x05);
|
|
|
|
padding: 10px var(--Space-x2);
|
|
background-color: var(--Component-Button-Brand-Primary-Fill-Disabled);
|
|
border-color: var(--Component-Button-Brand-Primary-Border-Disabled);
|
|
color: var(--Component-Button-Brand-Primary-On-fill-Disabled);
|
|
}
|