Change if statement

This commit is contained in:
Martijn Cuppens 2018-08-07 20:39:26 +02:00 committed by XhmikosR
parent 57661dff6d
commit bf7d4aef81
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@
// Negative margins (e.g., where `.mb-n1` is negative version of `.mb-1`)
@each $size, $length in $spacers {
@if not $size == 0 {
@if $size != 0 {
.m#{$infix}-n#{$size} { margin: -$length !important; }
.mt#{$infix}-n#{$size},
.my#{$infix}-n#{$size} {