29 lines
483 B
SCSS
29 lines
483 B
SCSS
/** @format */
|
|
.woocommerce-layout {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.woocommerce-layout__primary {
|
|
margin: 80px 0 0 $fallback-gutter-large;
|
|
margin: 80px 0 0 $gutter-large;
|
|
|
|
@include breakpoint( '>960px' ) {
|
|
margin-top: 100px;
|
|
}
|
|
|
|
@include breakpoint( '<782px' ) {
|
|
margin-top: 60px;
|
|
}
|
|
}
|
|
|
|
.woocommerce-layout .woocommerce-layout__main {
|
|
padding-right: $fallback-gutter-large;
|
|
padding-right: $gutter-large;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.woocommerce-page .update-nag {
|
|
display: none;
|
|
}
|