diff options
| author | Mark Otto <[email protected]> | 2017-06-30 09:07:10 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-06-30 11:44:09 -0700 |
| commit | 16781be0216b83b4c4026be2b03205dda101f2b8 (patch) | |
| tree | 7995f24897e2f1cbfb754aac1d1efdb9ec1f8ee9 | |
| parent | deeae4f8203676535dedc6509e8cc40468789766 (diff) | |
| download | bootstrap-16781be0216b83b4c4026be2b03205dda101f2b8.tar.xz bootstrap-16781be0216b83b4c4026be2b03205dda101f2b8.zip | |
drop the mixins
| -rw-r--r-- | scss/mixins/_grid.scss | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/scss/mixins/_grid.scss b/scss/mixins/_grid.scss index 25bdc74d4..5c00f57d7 100644 --- a/scss/mixins/_grid.scss +++ b/scss/mixins/_grid.scss @@ -45,26 +45,3 @@ // do not appear to require this. max-width: percentage($size / $columns); } - -@mixin make-col-offset($size, $columns: $grid-columns) { - margin-left: percentage($size / $columns); -} - -@mixin make-col-push($size, $columns: $grid-columns) { - left: if($size > 0, percentage($size / $columns), auto); -} - -@mixin make-col-pull($size, $columns: $grid-columns) { - right: if($size > 0, percentage($size / $columns), auto); -} - -@mixin make-col-modifier($type, $size, $columns) { - // Work around the lack of dynamic mixin @include support (https://github.com/sass/sass/issues/626) - @if $type == push { - @include make-col-push($size, $columns); - } @else if $type == pull { - @include make-col-pull($size, $columns); - } @else if $type == offset { - @include make-col-offset($size, $columns); - } -} |
