16 lines
419 B
CSS
16 lines
419 B
CSS
.wrapper {
|
|
position: sticky;
|
|
top: 0;
|
|
background-color: var(--Base-Surface-Primary-light-Normal);
|
|
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;
|
|
}
|
|
}
|