Files
web/packages/booking-flow/lib/components/EnterDetails/Details/MemberPriceModal/modal.module.css
Bianca Widstam 1b9273136a Merged in chore/BOOK-701-replace-subtitle-component (pull request #3398)
chore(BOOK-701): replace subtitle with typography

* chore(BOOK-701): replace subtitle with typography

* chore(BOOK-701): align center

* chore(BOOK-701): change token

* chore(BOOK-701): change text color

* fix(BOOK-704): revert pricechange dialog changes

* chore(BOOK-701): remove subtitle from package.json


Approved-by: Matilda Landström
2026-01-12 07:40:30 +00:00

33 lines
463 B
CSS

.modalContent {
display: grid;
gap: var(--Space-x3);
width: 100%;
}
.innerModalContent {
display: grid;
gap: var(--Space-x2);
align-items: center;
justify-items: center;
}
.title {
color: var(--Text-Heading);
text-align: center;
}
.newPrice {
display: flex;
gap: var(--Space-x1);
align-items: center;
}
.redPrice {
color: var(--Text-Accent-Primary);
}
@media screen and (min-width: 768px) {
.modalContent {
width: 352px;
}
}