fix(SW-998): fix issues related to non-english languages * fix(SW-998): reverse price logic Approved-by: Niclas Edenvin
28 lines
524 B
CSS
28 lines
524 B
CSS
.priceCard {
|
|
padding: var(--Spacing-x-one-and-half);
|
|
background-color: var(--Base-Surface-Secondary-light-Normal);
|
|
border-radius: var(--Corner-radius-Medium);
|
|
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;
|
|
}
|
|
|
|
.price {
|
|
display: flex;
|
|
gap: var(--Spacing-x-half);
|
|
}
|
|
|
|
.perNight {
|
|
font-weight: 400;
|
|
font-size: var(--typography-Caption-Regular-fontSize);
|
|
}
|