Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Cuppens <martijn.cuppens@gmail.com>2018-08-07 21:39:26 +0300
committerXhmikosR <xhmikosr@gmail.com>2018-08-13 10:10:52 +0300
commitbf7d4aef81637e78f73cf55ef09d71b2fcdcff96 (patch)
tree668367bedb57598eca01c2d4863f7a6a224777db /scss/utilities
parent57661dff6d444ac50bcb685425a704544bb653d9 (diff)
Change if statement
Diffstat (limited to 'scss/utilities')
-rw-r--r--scss/utilities/_spacing.scss2
1 files changed, 1 insertions, 1 deletions
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} {