Files
web/packages/booking-flow/lib/components/EnterDetails/Summary/UI/ui.module.css
Erik Tiekstra 4de24e9f2a feat(BOOK-391): Added theme and logos for Bassin Seven
* chore: Updated border-radius variables after import change

Approved-by: Linus Flood
2026-01-22 07:03:25 +00:00

124 lines
1.8 KiB
CSS

.summary {
border-radius: var(--Corner-Radius-lg);
display: flex;
flex-direction: column;
gap: var(--Space-x2);
padding: var(--Space-x3);
height: 100%;
}
.header {
display: grid;
grid-template-areas: "title button" "date date";
grid-template-columns: 1fr auto;
align-items: center;
}
.title {
grid-area: title;
}
.chevronIcon {
grid-area: button;
}
.date {
align-items: center;
display: flex;
gap: var(--Space-x1);
justify-content: flex-start;
grid-area: date;
color: var(--Base-Text-Medium-contrast);
}
.link {
margin-top: var(--Space-x1);
}
.addOns {
display: flex;
flex-direction: column;
gap: var(--Space-x15);
overflow-y: auto;
}
.rateDetailsPopover {
display: flex;
flex-direction: column;
gap: var(--Space-x05);
max-width: 360px;
}
.entry {
display: flex;
gap: var(--Space-x05);
justify-content: space-between;
}
.prices {
justify-items: flex-end;
flex-shrink: 0;
display: grid;
align-content: start;
}
.price {
color: var(--Text-Default);
&.discounted {
color: var(--Surface-Brand-Primary-1-OnSurface-Accent);
}
}
.strikeThroughRate {
text-decoration: line-through !important;
color: var(--Text-Secondary);
}
.approxPrice {
color: var(--Text-Secondary);
}
.ctaWrapper {
margin-top: var(--Space-x15);
}
.total {
display: flex;
flex-direction: column;
gap: var(--Space-x2);
}
.bottomDivider {
display: none;
}
.modalContent {
width: 560px;
}
.terms {
margin-top: var(--Space-x3);
margin-bottom: var(--Space-x3);
}
.termsText:nth-child(n) {
display: flex;
margin-bottom: var(--Space-x1);
}
.terms .termsIcon {
margin-right: var(--Space-x1);
}
@media screen and (min-width: 1367px) {
.bottomDivider {
display: block;
}
.header {
display: block;
}
.summary .header .chevronIcon {
display: none;
}
}