feat(SW-1078): mixed rate scenario * feat(SW-1078): mixed rate scenario * fix: change from css string modification to array join * refactor: split out big reduce function into smaller parts * fix: minor fixes and improvments * fix: added room index map to localization string Approved-by: Christian Andolf
37 lines
594 B
CSS
37 lines
594 B
CSS
.container {
|
|
display: flex;
|
|
gap: var(--Spacing-x1);
|
|
}
|
|
|
|
.card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
background-color: var(--Scandic-Blue-00);
|
|
padding: var(--Spacing-x-one-and-half);
|
|
border: 1px solid rgba(0, 0, 0, 0.05);
|
|
border-radius: var(--Corner-radius-Medium);
|
|
}
|
|
|
|
.cardTitle {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.cardTitle > span {
|
|
color: var(--UI-Text-Placeholder);
|
|
}
|
|
|
|
.card.inactive {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.priceItem {
|
|
display: flex;
|
|
gap: var(--Spacing-x1);
|
|
}
|
|
|
|
.priceItem > span {
|
|
font-weight: 400;
|
|
text-decoration: line-through;
|
|
}
|