Skip to content
This repository has been archived by the owner on Jan 25, 2024. It is now read-only.

Commit

Permalink
Fix missing parentheses errors
Browse files Browse the repository at this point in the history
there was not calc functions' closing parentheses
  • Loading branch information
murat authored Feb 24, 2019
1 parent c47f8be commit f23590c
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions includes/_margin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@
// with negative margins
$margin-sizes: "px", "xs", "s", "m", "l", "xl", "xxl";
@each $size in $margin-sizes {
.ma-t_#{$size} { margin-top: var(--space-#{$size}); } // postive
.ma-t_#{$size}- { margin-top: calc(-1 * var(--space-#{$size}); } // negative
.ma-r_#{$size} { margin-right: var(--space-#{$size}); } // postive
.ma-r_#{$size}- { margin-right: calc(-1 * var(--space-#{$size}); } // negative
.ma-b_#{$size} { margin-bottom: var(--space-#{$size}); } // postive
.ma-b_#{$size}- { margin-bottom: calc(-1 * var(--space-#{$size}); } // negative
.ma-l_#{$size} { margin-left: var(--space-#{$size}); } // postive
.ma-l_#{$size}- { margin-left: calc(-1 * var(--space-#{$size}); } // negative
.ma-v_#{$size} { margin-top: var(--space-#{$size}); margin-bottom: var(--space-#{$size}); } // postive
.ma-v_#{$size}- { margin-top: calc(-1 * var(--space-#{$size}); margin-bottom: calc(-1 * var(--space-#{$size}); } // negative
.ma-h_#{$size} { margin-left: var(--space-#{$size}); margin-right: var(--space-#{$size}); } // postive
.ma-h_#{$size}- { margin-left: calc(-1 * var(--space-#{$size}); margin-right: calc(-1 * var(--space-#{$size}); } // negative
.ma-t_#{$size} { margin-top: var(--space-#{$size}); } // postive
.ma-t_#{$size}- { margin-top: calc(-1 * var(--space-#{$size})); } // negative
.ma-r_#{$size} { margin-right: var(--space-#{$size}); } // postive
.ma-r_#{$size}- { margin-right: calc(-1 * var(--space-#{$size})); } // negative
.ma-b_#{$size} { margin-bottom: var(--space-#{$size}); } // postive
.ma-b_#{$size}- { margin-bottom: calc(-1 * var(--space-#{$size})); } // negative
.ma-l_#{$size} { margin-left: var(--space-#{$size}); } // postive
.ma-l_#{$size}- { margin-left: calc(-1 * var(--space-#{$size})); } // negative
.ma-v_#{$size} { margin-top: var(--space-#{$size}); margin-bottom: var(--space-#{$size}); } // postive
.ma-v_#{$size}- { margin-top: calc(-1 * var(--space-#{$size})); margin-bottom: calc(-1 * var(--space-#{$size})); } // negative
.ma-h_#{$size} { margin-left: var(--space-#{$size}); margin-right: var(--space-#{$size}); } // postive
.ma-h_#{$size}- { margin-left: calc(-1 * var(--space-#{$size})); margin-right: calc(-1 * var(--space-#{$size})); } // negative
}

// Reset!
Expand Down

0 comments on commit f23590c

Please sign in to comment.