Feat/BOOK-426 add campaign tag select hotel * feat(BOOK-426): introduce campaign tag on select hotel card * feat(BOOK-426): remove redundant tags * feat(BOOK-426): fix comments, change to typography * feat(BOOK-426): fix comments, update to cx Approved-by: Erik Tiekstra Approved-by: Matilda Landström
43 lines
744 B
CSS
43 lines
744 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(--Text-Accent-Primary);
|
|
}
|
|
.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);
|
|
}
|