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
33 lines
463 B
CSS
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;
|
|
}
|
|
}
|