* feat(SW-1230): Changes to script to be able to reload after soft navigation * feat(SW-1756): Added meeting package widget on content pages Approved-by: Matilda Landström
24 lines
426 B
CSS
24 lines
426 B
CSS
.mobile,
|
|
.desktop {
|
|
padding: var(--Spacing-x2) var(--Spacing-x2);
|
|
background-color: var(--Base-Surface-Primary-light-Normal);
|
|
}
|
|
|
|
.desktop {
|
|
display: none;
|
|
width: 100%;
|
|
max-width: var(--max-width-page);
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* Meeting booking widget changes design at 948px */
|
|
@media screen and (min-width: 948px) {
|
|
.mobile {
|
|
display: none;
|
|
}
|
|
.desktop {
|
|
display: flex;
|
|
gap: var(--Spacing-x2);
|
|
}
|
|
}
|