Feat/SW-1719 strikethrough rates * feat(SW-1719): Strikethrough rate if logged in on regular rate cards * feat(SW-1719): Strikethrough rate if logged in on rate summary * feat(SW-1719): Strikethrough rate if logged in on mobile rate summary * feat(SW-1719): Strikethrough rate if logged in on enter details * feat(SW-1719): Strikethrough rate support for multiple rooms * feat(SW-1719): booking receipt fixes on confirmation page * feat(SW-1719): improve initial total price calculation * feat: harmonize enter details total price to use one and the same function Approved-by: Michael Zetterberg
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);
|
|
}
|