Merged in feat/SW-1230-meeting-booking-widget (pull request #1507)

feat(SW-1230): Added meeting booking widget to hotel meeting pages

* feat(SW-1230): Added meeting booking widget to hotel meeting pages


Approved-by: Fredrik Thorsson
This commit is contained in:
Erik Tiekstra
2025-03-11 06:33:04 +00:00
parent 67004e5904
commit 2ef2b2e28d
10 changed files with 387 additions and 15 deletions

View File

@@ -0,0 +1,16 @@
/* Hiding widget on mobile for now as the widget is not ready for mobile use at the moment */
.widget {
background-color: var(--Base-Surface-Primary-light-Normal);
display: none;
}
/* Meeting booking widget changes design at 948px */
@media screen and (min-width: 948px) {
.widget {
background-color: var(--Base-Surface-Primary-light-Normal);
}
.widget.ready {
display: block;
}
}