Files
web/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddedAncillaries/addedAncillaries.module.css
Linus Flood 7fb95f436b Merged in feat/book-522-align (pull request #3101)
feat(BOOK-522): align items in topmenu, header and booking widget

* feat(BOOK-522): align items in topmenu, header and booking widget

* Delete old css variable and use new

* Fixed underline on icons


Approved-by: Erik Tiekstra
2025-11-07 11:06:56 +00:00

109 lines
1.7 KiB
CSS

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