Files
web/apps/scandic-web/components/HotelReservation/MyStay/Rooms/MultiRoom/multiRoom.module.css
Simon.Emanuelsson 85acd3453d Merged in feat/SW-1719-strikethrough-rates (pull request #2266)
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
2025-06-13 12:01:16 +00:00

55 lines
840 B
CSS

.wrapper {
display: flex;
flex-direction: column;
gap: var(--Spacing-x3);
}
.title {
color: var(--Scandic-Brand-Burgundy);
padding: 0 var(--Spacing-x2);
}
.container {
display: flex;
flex-direction: column;
gap: var(--Spacing-x5);
}
.roomsContainer {
display: grid;
gap: var(--Spacing-x3);
grid-template-columns: 1fr;
width: 100%;
}
.totalContainer {
display: flex;
flex-direction: column;
gap: var(--Spacing-x1);
padding: 0 var(--Spacing-x2);
}
.total {
display: flex;
justify-content: flex-end;
gap: var(--Spacing-x1);
}
@media (min-width: 768px) {
.roomsContainer {
grid-template-columns: repeat(2, 1fr);
}
.roomsContainer:has(> *:nth-of-type(3):last-child) {
grid-template-columns: repeat(3, 1fr);
}
.title {
padding: 0;
}
.totalContainer {
padding: 0;
}
}