25 lines
339 B
CSS
25 lines
339 B
CSS
.priceList {
|
|
margin: 0;
|
|
}
|
|
|
|
.priceRow {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
padding: var(--Spacing-x-quarter) 0;
|
|
}
|
|
|
|
.priceTable {
|
|
margin: 0;
|
|
}
|
|
|
|
.price {
|
|
display: flex;
|
|
gap: var(--Spacing-x-half);
|
|
}
|
|
|
|
.perNight {
|
|
font-weight: 400;
|
|
font-size: var(--typography-Caption-Regular-fontSize);
|
|
}
|