0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-19 16:54:24 +01:00

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

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} {