mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Add $gutter parameter to make-col mixin; fixes #19147
[skip sauce] [skip validator]
This commit is contained in:
parent
c1eb92a041
commit
43d0d45d0a
2 changed files with 4 additions and 4 deletions
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
@for $i from 1 through $columns {
|
@for $i from 1 through $columns {
|
||||||
.col-#{$breakpoint}-#{$i} {
|
.col-#{$breakpoint}-#{$i} {
|
||||||
@include make-col($i, $columns);
|
@include make-col($i, $columns, $gutter);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -33,11 +33,11 @@
|
||||||
margin-right: ($gutter / -2);
|
margin-right: ($gutter / -2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin make-col($size, $columns: $grid-columns) {
|
@mixin make-col($size, $columns: $grid-columns, $gutter: $grid-gutter-width) {
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 1px;
|
min-height: 1px;
|
||||||
padding-right: ($grid-gutter-width / 2);
|
padding-right: ($gutter / 2);
|
||||||
padding-left: ($grid-gutter-width / 2);
|
padding-left: ($gutter / 2);
|
||||||
|
|
||||||
@if $enable-flex {
|
@if $enable-flex {
|
||||||
flex: 0 0 percentage($size / $columns);
|
flex: 0 0 percentage($size / $columns);
|
||||||
|
|
Loading…
Add table
Reference in a new issue