diff options
| author | Bas Bosman <[email protected]> | 2014-06-10 16:46:04 +0200 |
|---|---|---|
| committer | Bas Bosman <[email protected]> | 2014-06-10 16:46:04 +0200 |
| commit | c6c809308546bd52d10378db61c151b46ce44e92 (patch) | |
| tree | f89555cc83b32cbd1d0bb45c185a78957476612a | |
| parent | 4aca4cf8661ab6e17ffd58820679a081db80ceaa (diff) | |
| download | bootstrap-c6c809308546bd52d10378db61c151b46ce44e92.tar.xz bootstrap-c6c809308546bd52d10378db61c151b46ce44e92.zip | |
Fix gutter variable
| -rw-r--r-- | less/mixins/grid.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/less/mixins/grid.less b/less/mixins/grid.less index 5ad8273be..cae5eaff9 100644 --- a/less/mixins/grid.less +++ b/less/mixins/grid.less @@ -6,8 +6,8 @@ .container-fixed(@gutter: @grid-gutter-width) { margin-right: auto; margin-left: auto; - padding-left: (@grid-gutter-width / 2); - padding-right: (@grid-gutter-width / 2); + padding-left: (@gutter / 2); + padding-right: (@gutter / 2); &:extend(.clearfix all); } |
