Chore/SW-2878 extract booking confirmation pag * chore(SW-2878): Moved booking confirmation page to booking-flow package * chore(SW-2878): Fixed promo styles as per design * chore(SW-2878): Kept tiny duplicate function to avoid export from booking-flow package Approved-by: Anton Gunnarsson
34 lines
488 B
CSS
34 lines
488 B
CSS
.entry {
|
|
display: flex;
|
|
gap: var(--Space-x05);
|
|
justify-content: space-between;
|
|
margin-bottom: var(--Space-x15);
|
|
}
|
|
|
|
.prices {
|
|
justify-items: flex-end;
|
|
flex-shrink: 0;
|
|
display: grid;
|
|
}
|
|
|
|
.price {
|
|
color: var(--Text-Default);
|
|
|
|
&.discounted {
|
|
color: var(--Text-Accent-Primary);
|
|
}
|
|
}
|
|
|
|
.strikeThroughRate {
|
|
text-decoration: line-through;
|
|
color: var(--Text-Secondary);
|
|
}
|
|
|
|
.approxPrice {
|
|
color: var(--Text-Secondary);
|
|
}
|
|
|
|
.ctaWrapper {
|
|
margin-top: var(--Space-x15);
|
|
}
|