feat(SW-2873): Move HotelReservationSidePeek to booking-flow * Move sidepeek store to booking-flow * Begin move of HotelReservationSidePeek to booking-flow * Copy Link * Update AccessibilityAccordionItem * Split AccessibilityAccordionItem into two components * Fix tracking for Accordion * Duplicate ButtonLink to booking-flow TEMP * AdditionalAmeneties * wip * Move sidepeek accordion items * Remove temp ButtonLink * Merge branch 'master' into feat/sw-3218-move-hotelreservationsidepeek-to-booking-flow * Fix accordion tracking * Merge branch 'master' into feat/sw-3218-move-hotelreservationsidepeek-to-booking-flow * Update exports * Fix self-referencing import * Merge branch 'master' into feat/sw-3218-move-hotelreservationsidepeek-to-booking-flow * Add 'use client' to tracking function * Merge branch 'master' into feat/sw-3218-move-hotelreservationsidepeek-to-booking-flow * Fix TEMP folder * Refactor sidepeek tracking * Merge branch 'master' into feat/sw-3218-move-hotelreservationsidepeek-to-booking-flow Approved-by: Joakim Jäderberg
59 lines
1.0 KiB
CSS
59 lines
1.0 KiB
CSS
.wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
position: relative;
|
|
margin-bottom: calc(
|
|
var(--Spacing-x4) * 2 + 80px
|
|
); /* Creates space between the wrapper and buttonContainer */
|
|
}
|
|
|
|
.mainContent {
|
|
color: var(--Text-Secondary);
|
|
}
|
|
|
|
.mainContent,
|
|
.listContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x-one-and-half);
|
|
}
|
|
|
|
.imageContainer {
|
|
position: relative;
|
|
border-radius: var(--Corner-radius-md);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.imageContainer img {
|
|
width: 100%;
|
|
aspect-ratio: 16/9;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.facilityList {
|
|
column-count: 2;
|
|
column-gap: var(--Spacing-x2);
|
|
color: var(--Text-Secondary);
|
|
}
|
|
|
|
.facilityList li {
|
|
display: flex !important; /* Overrides the display none from grids.stackable on Hotel Page */
|
|
gap: var(--Spacing-x1);
|
|
margin-bottom: var(--Spacing-x-half);
|
|
}
|
|
|
|
.bedOptions {
|
|
color: var(--Text-Secondary);
|
|
}
|
|
|
|
.bedOptions li {
|
|
display: flex;
|
|
gap: var(--Spacing-x1);
|
|
margin-bottom: var(--Spacing-x-half);
|
|
}
|
|
|
|
.facilityList li svg {
|
|
flex-shrink: 0;
|
|
}
|