Files
web/packages/booking-flow/lib/components/BookingWidget/BookingWidgetForm/form.module.css
Erik Tiekstra 4de24e9f2a feat(BOOK-391): Added theme and logos for Bassin Seven
* chore: Updated border-radius variables after import change

Approved-by: Linus Flood
2026-01-22 07:03:25 +00:00

49 lines
774 B
CSS

.section {
align-items: center;
display: grid;
margin: 0 auto;
width: 100%;
}
.form {
display: grid;
height: 100%;
}
@media screen and (max-width: 767px) {
.section {
max-width: var(--max-width-page);
}
.form {
align-self: flex-start;
}
}
@media screen and (min-width: 768px) {
.default {
border-radius: var(--Corner-Radius-md);
}
}
@media screen and (min-width: 1367px) {
.default {
padding: var(--Space-x15) var(--Space-x2) var(--Space-x15) var(--Space-x1);
}
.full {
padding: var(--Space-x1) 0;
}
.form {
width: 100%;
max-width: var(--max-width-page);
margin: 0 auto;
}
.compact {
padding: var(--Space-x15) var(--Space-x2) var(--Space-x15) var(--Space-x15);
white-space: nowrap;
}
}