|
@@ -4,7 +4,8 @@
|
|
|
body[class*="woocommerce"] #page { // adding #page here to override default wc styles without !important
|
|
|
|
|
|
.entry-content .woocommerce-MyAccount-navigation {
|
|
|
- width: 20%;
|
|
|
+
|
|
|
+ width: 100%;
|
|
|
|
|
|
ul li a {
|
|
|
line-height: map-deep-get($config-global, "font", "line-height", "heading");
|
|
@@ -14,10 +15,15 @@ body[class*="woocommerce"] #page { // adding #page here to override default wc s
|
|
|
& + *:not(:first-child) {
|
|
|
margin-top: 0;
|
|
|
}
|
|
|
+
|
|
|
+ @include media(tablet) {
|
|
|
+ width: 20%;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.woocommerce-MyAccount-content {
|
|
|
- width: calc(80% - #{map-deep-get($config-global, "spacing", "horizontal")});
|
|
|
+
|
|
|
+ width: 100%;
|
|
|
|
|
|
.woocommerce-notices-wrapper:empty {
|
|
|
display: none;
|
|
@@ -28,6 +34,10 @@ body[class*="woocommerce"] #page { // adding #page here to override default wc s
|
|
|
padding: map-deep-get($config-global, "spacing", "unit");
|
|
|
border-radius: 3px;
|
|
|
}
|
|
|
+
|
|
|
+ @include media(tablet) {
|
|
|
+ width: calc(80% - #{map-deep-get($config-global, "spacing", "horizontal")});
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.addresses .title h3 {
|