Fix/SW-902 update response city availability * fix(SW-902): update response for API changes * fix(SW-902): add total row for pricePerStay * fix(SW-902): fix optional requestedPrice * fix(SW-902): fix bookingCode output * feat(SW-903): fix sorting Approved-by: Pontus Dreij Approved-by: Niclas Edenvin
41 lines
696 B
CSS
41 lines
696 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%;
|
|
}
|
|
|
|
.noRooms {
|
|
display: flex;
|
|
gap: var(--Spacing-x1);
|
|
}
|
|
|
|
.prices {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x-one-and-half);
|
|
max-width: 260px;
|
|
}
|
|
|
|
.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);
|
|
}
|