feat: SW-2079 Show points in confirmation page * feat: SW-2079 Show points in confirmation page * feat: SW-2079 Optimized code * feat: SW-2079 Updated Body to Typography * feat: SW-2079 Multi-room total cost display * feat: SW-2079 Add reward nights condition rate title * feat: SW-2079 Removed extra checks * feat: SW-2079 Optimmized formatPrice function * feat: SW-2079 Typo fix Approved-by: Christian Andolf
55 lines
780 B
CSS
55 lines
780 B
CSS
.room {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x-one-and-half);
|
|
}
|
|
|
|
.roomHeader {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
}
|
|
|
|
.roomHeader :nth-child(n + 3) {
|
|
grid-column: 1/-1;
|
|
}
|
|
|
|
.memberPrice {
|
|
display: flex;
|
|
gap: var(--Spacing-x1);
|
|
}
|
|
|
|
.entry {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.termsLink {
|
|
justify-self: flex-start;
|
|
}
|
|
|
|
.terms {
|
|
padding-top: var(--Spacing-x3);
|
|
}
|
|
|
|
.termsText:nth-child(n) {
|
|
display: flex;
|
|
align-items: center;
|
|
padding-bottom: var(--Spacing-x1);
|
|
}
|
|
|
|
.terms .termsIcon {
|
|
padding-right: var(--Spacing-x1);
|
|
}
|
|
|
|
.red {
|
|
color: var(--Scandic-Brand-Scandic-Red);
|
|
}
|
|
|
|
.uiTextHighContrast {
|
|
color: var(--UI-Text-High-contrast);
|
|
}
|
|
|
|
.uiTextMediumContrast {
|
|
color: var(--UI-Text-Medium-contrast);
|
|
}
|