mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
make-col-offset: Remove percentage if it's zero.
This commit is contained in:
parent
7b715ee7e8
commit
219ba7f2ea
1 changed files with 2 additions and 1 deletions
|
@ -47,5 +47,6 @@
|
|||
}
|
||||
|
||||
@mixin make-col-offset($size, $columns: $grid-columns) {
|
||||
margin-left: percentage($size / $columns);
|
||||
$num: $size / $columns;
|
||||
margin-left: if($num == 0, 0, percentage($num));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue