Merged in fix/book-149-ui-fixes (pull request #3463)

Fix/book 149 ui fixes

* fixed text-overflow issue in datepicker trigger

* fixed X missing in booking code text field

* fixed toDate not setting properly

* fixed spacing issues and placeholder text not fitting

* added error message to child age if none is added

* spacing fixes

* Revert "map link alignment fix"

This reverts commit d38cc5b007bc05a1d48ce6661b1052fe714961c3.

* fixed EB points padding issue on SAS tablet

* maxWidth on BookingCode/voucher

* spacing fixes

* fixed icons in error message

* spacing fixes

* scroll to child age picker updates

* feat(SW-3706): fix heatmap issue for langswitcher and booking widget

* fixed tablet lineup issue


Approved-by: Linus Flood
This commit is contained in:
Matilda Haneling
2026-01-22 12:50:24 +00:00
parent f79ff9b570
commit 665ca210c0
19 changed files with 129 additions and 41 deletions
@@ -12,6 +12,8 @@
bottom: 0;
width: 100%;
z-index: 1;
transform: translateY(0);
visibility: visible;
}
@media screen and (max-width: 767px) {
.backdrop {
@@ -41,9 +43,11 @@
padding: var(--Space-x3) var(--Space-x2);
position: fixed;
left: 0;
bottom: -100%;
bottom: 0;
overflow-y: auto;
transition: bottom 300ms ease;
transform: translateY(100%);
transition: transform 300ms ease;
visibility: hidden;
&:has([data-searchlist-open="true"]) {
overflow-y: visible;
@@ -83,6 +87,8 @@
position: static;
padding: 0;
overflow-y: visible;
transform: none;
visibility: visible;
&.compactFormContainer {
box-shadow: none;
@@ -93,3 +99,11 @@
display: none;
}
}
@media screen and (min-width: 1367px) {
.formContainer {
&.compactFormContainer {
padding-left: var(--Space-x15);
}
}
}