Skip to content

Commit

Permalink
Fix missing trailing semicolon for theme blank
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtuvn committed Mar 12, 2021
1 parent c998238 commit 491f82d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
.lib-css(margin, 0 -(@checkout-payment-option-title-mobile__padding));

.payment-option-title {
.lib-css(padding, @checkout-payment-option-title-mobile__padding)
.lib-css(padding, @checkout-payment-option-title-mobile__padding);
}

.payment-option-content {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,11 +164,11 @@

.step-title {
.lib-css(padding-left, @checkout-payment-method-title-mobile__padding);
.lib-css(padding-right, @checkout-payment-method-title-mobile__padding)
.lib-css(padding-right, @checkout-payment-method-title-mobile__padding);
}

.payment-method-title {
.lib-css(padding, @checkout-payment-method-title-mobile__padding)
.lib-css(padding, @checkout-payment-method-title-mobile__padding);
}

.payment-method-content {
Expand Down Expand Up @@ -209,7 +209,7 @@
.fieldset {
> .field {
margin: 0 0 @indent__base;

&.choice {
&:before {
padding: 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,6 @@
}
}

// Remove address and phone number link color on iOS
.email-non-inline() {
.address-details a {
&:extend(.no-link a);
}
}

.media-width(@extremum, @break) when (@extremum = 'max') and (@break = @screen__xs) {
// Stack columns
.order-details {
Expand Down Expand Up @@ -131,7 +124,7 @@
> tr {
> th,
> td {
background-color: @color-gray95
background-color: @color-gray95;
}
}
}
Expand Down Expand Up @@ -244,4 +237,9 @@
.email-items {
.lib-table-overflow();
}

// Remove address and phone number link color on iOS
.address-details a {
&:extend(.no-link a);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@

.page-layout-2columns-left {
.main {
padding-left: @layout-column__additional-sidebar-offset
padding-left: @layout-column__additional-sidebar-offset;
}

.sidebar-additional {
Expand Down

0 comments on commit 491f82d

Please sign in to comment.