Merged in fix/SW-2913-start-page-desktop-browsers-book (pull request #2691)

fix(SW-2913): Fixed flicker issue on floating booking widget

* fix(SW-2913): Fixed flicker issue on floating booking widget

* Fix(SW-2913): Flicker issue on iPad resolution


Approved-by: Bianca Widstam
This commit is contained in:
Hrishikesh Vaipurkar
2025-08-22 12:10:15 +00:00
parent d3f57b04eb
commit 2fcd277206

View File

@@ -1,7 +1,7 @@
.floatingBookingWidget {
width: var(--max-width-content);
margin: 0 auto;
min-height: 84px;
min-height: 88px;
z-index: 1000;
position: relative;
@@ -26,3 +26,9 @@
}
}
}
@media screen and (min-width: 768px) and (max-width: 1366px) {
.floatingBookingWidget {
min-height: 150px;
}
}