Fix/book 149 incorrect onfocus behaviour booking widget * fix(BOOK-149): fixed labels shifting * fix(BOOK-149): reintroduced sticky position * fix(BOOK-149): added missing border to "where" text field * added overflow to datepicker * comment fixes * removed separate typography declaration * changed to onPress * fix(BOOK-149): moved components to separate files * fix(BOOK-149): removed desktop & mobile specific css classes * fix(BOOK-149): new implementation of date and room modals * dependencies update * fix(BOOK-149): fixed child age dropdown issue, related error message, and Rooms & Guests container height * updated info button to new variant * fix(BOOK-149): prevent scrolling of background when modals are open in Tablet mode * fixed overlay issue and added focus indicator on mobile * fixed missing space in css * rebase and fixed icon buttons after update * simplified to use explicit boolean * PR comments fixes * more PR comment fixes * PR comment fixes * fixed setIsOpen((prev) => !prev) * fixed issues with room error not showing properly on mobile * fixing pr comments * fixed flickering on GuestRoomModal Approved-by: Erik Tiekstra
49 lines
774 B
CSS
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;
|
|
}
|
|
}
|