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
23 lines
334 B
CSS
23 lines
334 B
CSS
.receipt {
|
|
display: grid;
|
|
gap: var(--Space-x2);
|
|
}
|
|
|
|
.heading {
|
|
color: var(--Text-Default);
|
|
}
|
|
|
|
.dates {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--Space-x1);
|
|
justify-content: flex-start;
|
|
color: var(--Text-Accent-Secondary);
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.receipt {
|
|
padding: var(--Space-x3);
|
|
}
|
|
}
|