Files
web/packages/booking-flow/lib/components/EnterDetails/PriceChangeDialog/PriceChangeSummary/priceChangeSummary.module.css
Bianca Widstam d9ec1b1f2d Merged in chore/BOOK-739-replace-caption (pull request #3428)
chore(BOOK-739): replace caption with typography

* chore(BOOK-739): replace caption with typography

* chore(BOOK-739): refactor div

* chore(BOOK-739): refactor badge

* chore(BOOK-739): remove span

* chore(BOOK-739): skeleton update

* chore(BOOK-739): update

* chore(BOOK-739): update reward

* chore(BOOK-739): update voucher currency


Approved-by: Erik Tiekstra
2026-01-14 09:33:27 +00:00

102 lines
1.5 KiB
CSS

.dialog {
position: fixed;
inset: 0;
width: 100dvw;
height: 100dvh;
background-color: var(--Background-Primary);
z-index: 200;
overflow: auto;
display: flex;
justify-content: center;
align-items: flex-start;
}
.header {
display: flex;
justify-content: center;
}
.content {
width: 100%;
height: 100%;
padding: var(--Space-x4);
display: flex;
flex-direction: column;
gap: var(--Space-x4);
}
.closeButton {
position: absolute;
top: var(--Space-x4);
right: var(--Space-x4);
}
.roomsSection {
display: flex;
flex-direction: column;
overflow: auto;
}
.rowContainer {
padding: var(--Space-x2) 0;
display: flex;
flex-direction: column;
gap: var(--Space-x1);
}
.roomContainer:first-child {
padding-top: 0;
}
.roomContainer:last-child {
padding-bottom: 0;
}
.priceRow {
display: flex;
justify-content: space-between;
color: var(--UI-Text-Medium-contrast);
}
.prevPrice {
text-decoration: line-through;
}
.updatedPrice {
display: flex;
align-items: center;
gap: var(--Space-x1);
}
.footer {
display: flex;
flex-direction: column-reverse;
justify-content: center;
gap: var(--Space-x2);
padding-top: var(--Space-x6);
margin-top: auto;
}
@media screen and (min-width: 1367px) {
.dialog {
padding: var(--Space-x6);
align-items: center;
}
.header {
justify-content: flex-start;
}
.content {
width: 512px;
height: fit-content;
padding: 0;
}
.footer {
flex-direction: row;
padding: var(--Space-x6) 0;
}
}