68cd061c6d
Feature/select rate vertical data flow * add fix from SW-2666 * use translations for room packages * move types to it's own file * Merge branch 'master' of bitbucket.org:scandic-swap/web into feature/select-rate-vertical-data-flow * merge * feature/select-rate: double rate for campaing rates * revert NODE_ENV check in Cookiebot script * revert testing values * fix(SW-3171): fix all filter selected in price details * fix(SW-3166): multiroom anchoring when changing filter * fix(SW-3172): check hotelType, show correct breakfast message * Merge branch 'feature/select-rate-vertical-data-flow' of bitbucket.org:scandic-swap/web into feature/select-rate-vertical-data-flow * fix: show special needs icons for subsequent roomTypes SW-3167 * fix: Display strike through text when logged in SW-3168 * fix: Reinstate the scrollToView behaviour when selecting a rate SW-3169 * merge * . * PR fixes * fix: don't return notFound() * . * always include defaults for room packages * merge * merge * merge * Remove floating h1 for new select-rate Approved-by: Anton Gunnarsson
107 lines
1.6 KiB
CSS
107 lines
1.6 KiB
CSS
.summary {
|
|
border-radius: var(--Corner-radius-lg);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
padding: var(--Spacing-x3);
|
|
height: 100%;
|
|
}
|
|
|
|
.header button {
|
|
display: grid;
|
|
grid-template-areas: "title button" "date date";
|
|
grid-template-columns: 1fr auto;
|
|
align-items: center;
|
|
width: 100%;
|
|
|
|
background-color: transparent;
|
|
border: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.title {
|
|
grid-area: title;
|
|
}
|
|
|
|
.chevronIcon {
|
|
grid-area: button;
|
|
}
|
|
|
|
.date {
|
|
align-items: center;
|
|
display: flex;
|
|
gap: var(--Spacing-x1);
|
|
justify-content: flex-start;
|
|
grid-area: date;
|
|
}
|
|
|
|
.link {
|
|
margin-top: var(--Spacing-x1);
|
|
}
|
|
|
|
.addOns {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x-one-and-half);
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.rateDetailsPopover {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x-half);
|
|
max-width: 360px;
|
|
}
|
|
|
|
.entry {
|
|
display: flex;
|
|
gap: var(--Spacing-x-half);
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.entry > :last-child {
|
|
justify-items: flex-end;
|
|
}
|
|
|
|
.total {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
}
|
|
|
|
.bottomDivider {
|
|
display: none;
|
|
}
|
|
|
|
.modalContent {
|
|
width: 560px;
|
|
}
|
|
|
|
.terms {
|
|
margin-top: var(--Spacing-x3);
|
|
margin-bottom: var(--Spacing-x3);
|
|
}
|
|
.termsText:nth-child(n) {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: var(--Spacing-x1);
|
|
}
|
|
.terms .termsIcon {
|
|
margin-right: var(--Spacing-x1);
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.bottomDivider {
|
|
display: block;
|
|
}
|
|
|
|
.header {
|
|
display: block;
|
|
}
|
|
|
|
.summary .header .chevronButton {
|
|
display: none;
|
|
}
|
|
}
|