From: Martijn Cuppens Date: Tue, 7 Aug 2018 18:39:26 +0000 (+0200) Subject: Change if statement X-Git-Tag: v4.2.0~366 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf7d4aef81637e78f73cf55ef09d71b2fcdcff96;p=thirdparty%2Fbootstrap.git Change if statement --- diff --git a/scss/utilities/_spacing.scss b/scss/utilities/_spacing.scss index c43387dec1..351136790a 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} {