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

Commit

Permalink
Merge pull request #3 from murat/patch-1
Browse files Browse the repository at this point in the history
Fix missing parentheses errors
  • Loading branch information
Frank Lämmer authored Dec 22, 2019
2 parents b950082 + f23590c commit 10b98c8
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 10b98c8

Please sign in to comment.