feat(SW-3581): Set price colors to scandic red * Set price colors to scandic red * Remove comment Approved-by: Bianca Widstam Approved-by: Joakim Jäderberg
43 lines
750 B
CSS
43 lines
750 B
CSS
.priceCard {
|
|
padding: var(--Spacing-x-one-and-half);
|
|
background-color: var(--Base-Surface-Secondary-light-Normal);
|
|
border-radius: var(--Corner-radius-md);
|
|
margin: 0;
|
|
width: 100%;
|
|
}
|
|
.divider {
|
|
margin: var(--Spacing-x-half) 0;
|
|
}
|
|
|
|
.priceRow {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
padding: var(--Spacing-x-quarter) 0;
|
|
}
|
|
|
|
.redColor {
|
|
color: var(--Scandic-Brand-Scandic-Red);
|
|
}
|
|
.defaultColor {
|
|
color: var(--Text-Default);
|
|
}
|
|
.secondaryColor {
|
|
color: var(--Text-Secondary);
|
|
}
|
|
|
|
.price {
|
|
display: flex;
|
|
gap: var(--Spacing-x-half);
|
|
}
|
|
|
|
.voucherChqRate {
|
|
justify-content: start;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.perNight {
|
|
font-weight: 400;
|
|
font-size: var(--typography-Caption-Regular-fontSize);
|
|
}
|