Files
web/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddedAncillaries/addedAncillaries.module.css
Joakim Jäderberg 7eb74ea239 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
2025-12-09 12:45:34 +00:00

114 lines
1.7 KiB
CSS

.container {
display: flex;
flex-direction: column;
gap: var(--Space-x05);
}
.header {
display: flex;
flex-direction: column;
justify-content: space-between;
gap: var(--Space-x15);
margin-top: var(--Space-x5);
}
@media (min-width: 768px) {
.container {
gap: var(--Space-x3);
}
.header {
align-items: center;
flex-direction: row;
}
}
.deliveryTime {
display: flex;
justify-content: space-between;
gap: var(--Space-x1);
color: var(--Base-Text-High-contrast);
}
.ancillaryMobile {
background-color: var(--Background-Primary);
border-radius: var(--Corner-radius-md);
display: flex;
flex-direction: column;
gap: var(--Space-x1);
}
.ancillaryDesktop {
display: none;
padding: var(--Space-x2);
background-color: var(--Background-Primary);
border-radius: var(--Corner-radius-md);
flex-direction: column;
gap: var(--Space-x1);
}
@media (min-width: 768px) {
.ancillaryMobile {
display: none;
}
.ancillaryDesktop {
display: flex;
}
}
.paymentMobileWrapper {
display: flex;
}
.paymentMobile {
display: flex;
gap: var(--Space-x2);
align-items: center;
}
.commentMobile {
margin-bottom: var(--Space-x3);
}
.footerMobile {
display: flex;
margin-top: var(--Space-x4);
}
.specification {
display: flex;
justify-content: space-between;
padding: var(--Space-x1) 0;
}
.name {
display: flex;
gap: var(--Space-x1);
align-items: center;
}
.payment {
display: flex;
gap: var(--Space-x2);
align-items: center;
}
.footer {
display: flex;
justify-content: space-between;
padding: var(--Space-x1) 0;
}
.comment {
display: flex;
gap: var(--Space-x15);
}
.actions {
display: flex;
gap: var(--Space-x2);
}
.ancillaryComment {
color: var(--UI-Text-Medium-contrast);
}