File size: 521 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
@import "../shared-style";
.is-group-jetpack-cloud.is-section-jetpack-cloud-pricing,
.is-group-jetpack-cloud.is-section-jetpack-cloud-manage-pricing {
@include jetpack-cloud-sections-shared-styles();
.layout__content {
overflow: clip;
}
.global-notices {
z-index: 100201;
}
}
html {
overflow-y: initial;
}
body.is-section-jetpack-cloud-pricing {
//hide scroll for body when cart is open in mobile view
&.body--masterbar-cart-visible {
@media (max-width: $break-mobile) {
overflow-y: hidden;
}
}
}
|