Feat/SW-2078 update confirmation page vouchers and Corp Cheques rate * feat: SW-2078 Tablet bookingCode ref forward issue fix (cherry picked from commit 16a6a00fd99b6b6220a98ad74de062d67d35e1c0) * feat: SW-2078 Display Vouchers and Cheques prices on confirmation page (cherry picked from commit a76494de497a7d5e7641cb0036bd7055acf875c1) * feat: SW-2078 Rebase issue fix * feat: SW-2079 Updated rate title in terms modal * feat: SW-2078 Optimized code * feat: SW-2078 Removed extra tags Approved-by: Christian Andolf
73 lines
1.3 KiB
CSS
73 lines
1.3 KiB
CSS
.referenceCard {
|
|
width: var(--max-width-content);
|
|
max-width: 588px;
|
|
margin: 0 auto;
|
|
padding: var(--Spacing-x3);
|
|
border-radius: var(--Corner-radius-Large);
|
|
background-color: var(--Base-Surface-Primary-light-Normal);
|
|
box-shadow: var(--popup-box-shadow);
|
|
}
|
|
|
|
.referenceRow {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding-bottom: var(--Spacing-x-one-and-half);
|
|
}
|
|
|
|
.divider {
|
|
margin-bottom: var(--Spacing-x-one-and-half);
|
|
}
|
|
|
|
.cancelledRooms {
|
|
color: var(--Scandic-Brand-Scandic-Red);
|
|
}
|
|
|
|
.actionArea {
|
|
display: flex;
|
|
gap: var(--Spacing-x2);
|
|
margin: var(--Spacing-x4) 0 var(--Spacing-x3);
|
|
}
|
|
|
|
.note {
|
|
text-align: center;
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.cancelledNote {
|
|
color: var(--UI-Text-Placeholder);
|
|
}
|
|
|
|
.titleDesktop {
|
|
display: none;
|
|
}
|
|
|
|
.guaranteed {
|
|
align-items: flex-start;
|
|
border-radius: var(--Corner-radius-Medium);
|
|
display: flex;
|
|
background-color: var(--Surface-Feedback-Succes);
|
|
gap: var(--Spacing-x1);
|
|
padding: var(--Spacing-x1);
|
|
margin-bottom: var(--Space-x1);
|
|
}
|
|
|
|
.guaranteedText {
|
|
color: var(--Surface-Feedback-Succes-Accent);
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.actionArea {
|
|
gap: var(--Spacing-x3);
|
|
}
|
|
|
|
.titleMobile {
|
|
display: none;
|
|
}
|
|
|
|
.titleDesktop {
|
|
display: block;
|
|
}
|
|
}
|