36 lines
647 B
SCSS
36 lines
647 B
SCSS
@import './stylesheets/_variables.scss';
|
|
|
|
.woocommerce-admin-page__extensions {
|
|
background: #fff;
|
|
|
|
#wpbody {
|
|
margin: 0;
|
|
}
|
|
|
|
#wpbody-content {
|
|
/* Prevent double-scrollbar issue on WooCommerce > Extension pages */
|
|
overflow: hidden;
|
|
}
|
|
|
|
.woocommerce-layout__primary {
|
|
margin: 0;
|
|
}
|
|
|
|
.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;
|
|
margin-top: 16px;
|
|
|
|
@media (min-width: $breakpoint-medium) {
|
|
margin-left: 32px;
|
|
margin-right: 32px;
|
|
margin-top: 32px;
|
|
}
|
|
}
|
|
}
|