34 lines
689 B
SCSS
34 lines
689 B
SCSS
@import './stylesheets/_variables.scss';
|
|
|
|
.woocommerce-admin-page__extensions {
|
|
background: #fff;
|
|
|
|
#wpbody-content {
|
|
/* Prevent double-scrollbar issue on WooCommerce > Extension pages */
|
|
overflow: hidden;
|
|
}
|
|
|
|
.woocommerce-layout__primary {
|
|
margin: $header-height-mobile 0 0;
|
|
|
|
@media (min-width: $breakpoint-medium) {
|
|
margin-top: $header-height-desktop;
|
|
}
|
|
}
|
|
|
|
.woocommerce-layout__main {
|
|
padding: 0;
|
|
}
|
|
|
|
/* On marketplace pages, reposition store alerts so they don't collide with other components */
|
|
.woocommerce-store-alerts {
|
|
margin-left: 16px;
|
|
margin-right: 16px;
|
|
|
|
@media (min-width: $breakpoint-medium) {
|
|
margin-left: 32px;
|
|
margin-right: 32px;
|
|
}
|
|
}
|
|
}
|