Fix/STAY-133 * fix: Add static summary buttons row on add ancillary flow * fix: refactor handling of modals * fix: refactor file structure for add ancillary flow * Merged in chore/replace-deprecated-body (pull request #3300) Replace deprecated <Body> with <Typography> * chore: replace deprecated body component * refactor: replace Body component with Typography across various components * merge Approved-by: Bianca Widstam Approved-by: Matilda Landström Approved-by: Bianca Widstam Approved-by: Matilda Landström
43 lines
567 B
CSS
43 lines
567 B
CSS
.price {
|
|
display: flex;
|
|
gap: var(--Space-x2);
|
|
align-items: center;
|
|
}
|
|
|
|
.contentContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.description {
|
|
display: flex;
|
|
margin: var(--Space-x2) 0;
|
|
}
|
|
|
|
.pointsDivider {
|
|
display: flex;
|
|
gap: var(--Space-x2);
|
|
height: 24px;
|
|
}
|
|
|
|
.breakfastPriceList {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.divider {
|
|
display: none;
|
|
height: var(--Space-x4);
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.breakfastPriceList {
|
|
flex-direction: row;
|
|
gap: var(--Space-x2);
|
|
}
|
|
|
|
.divider {
|
|
display: block;
|
|
}
|
|
}
|