feat(SW-2708): Made meeting package widget visible, but not sticky on smaller viewports

Approved-by: Linus Flood
This commit is contained in:
Erik Tiekstra
2025-05-12 12:30:40 +00:00
parent d9a9c09305
commit bbc279379f
2 changed files with 8 additions and 3 deletions

View File

@@ -5,3 +5,11 @@
box-shadow: 0px 16px 24px 0px rgba(0, 0, 0, 0.08);
z-index: var(--booking-widget-z-index);
}
/* Temporary solution to show the Meeting package widget on mobile, but nonsticky */
/* Meeting booking widget changes design at 948px */
@media screen and (max-width: 947px) {
.wrapper {
position: unset;
}
}