Files
web/packages/booking-flow/lib/components/BookingWidget/BookingWidgetForm/form.module.css
Erik Tiekstra 88644597df chore: Replaced deprecated Spacing variables with current values
Approved-by: Matilda Landström
2025-11-12 12:56:22 +00:00

51 lines
785 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-x1);
white-space: nowrap;
}
}