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
17 lines
403 B
CSS
17 lines
403 B
CSS
/* 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;
|
|
}
|
|
}
|