diff options
| author | Martijn Cuppens <[email protected]> | 2018-08-07 20:39:26 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2018-08-13 10:10:52 +0300 |
| commit | bf7d4aef81637e78f73cf55ef09d71b2fcdcff96 (patch) | |
| tree | 668367bedb57598eca01c2d4863f7a6a224777db /scss | |
| parent | 57661dff6d444ac50bcb685425a704544bb653d9 (diff) | |
| download | bootstrap-bf7d4aef81637e78f73cf55ef09d71b2fcdcff96.tar.xz bootstrap-bf7d4aef81637e78f73cf55ef09d71b2fcdcff96.zip | |
Change if statement
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/utilities/_spacing.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/utilities/_spacing.scss b/scss/utilities/_spacing.scss index c43387dec..351136790 100644 --- a/scss/utilities/_spacing.scss +++ b/scss/utilities/_spacing.scss @@ -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} { |
