]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Change if statement
authorMartijn Cuppens <martijn.cuppens@gmail.com>
Tue, 7 Aug 2018 18:39:26 +0000 (20:39 +0200)
committerXhmikosR <xhmikosr@gmail.com>
Mon, 13 Aug 2018 07:10:52 +0000 (10:10 +0300)
scss/utilities/_spacing.scss

index c43387dec10484d04e7f7d83e43b0e0d490dfb84..351136790a48a33a2622627e4267425a2ec90b61 100644 (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} {