diff options
| author | Kovah <[email protected]> | 2016-09-09 06:48:17 +0200 |
|---|---|---|
| committer | Chris Garcia <[email protected]> | 2016-09-13 23:02:56 -0500 |
| commit | 0ef64d89f7fbf7c4eb306569b050720e240dde6b (patch) | |
| tree | b8dbc51ac2bfc2e6be4583be4d2efbbd31980bd5 /scss/_variables.scss | |
| parent | 3f01134031b15a934d5e233bb26a407a7e05492b (diff) | |
| download | bootstrap-0ef64d89f7fbf7c4eb306569b050720e240dde6b.tar.xz bootstrap-0ef64d89f7fbf7c4eb306569b050720e240dde6b.zip | |
Add breakpoint-specific gutters.
Diffstat (limited to 'scss/_variables.scss')
| -rw-r--r-- | scss/_variables.scss | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/scss/_variables.scss b/scss/_variables.scss index 86a29e23c..d8b67b322 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -150,9 +150,15 @@ $container-max-widths: ( // // Set the number of columns and specify the width of the gutters. -$grid-columns: 12 !default; -$grid-gutter-width: 30px !default; - +$grid-columns: 12 !default; +$grid-gutter-width-base: 30px !default; +$grid-gutter-widths: ( + xs: $grid-gutter-width-base, + sm: $grid-gutter-width-base, + md: $grid-gutter-width-base, + lg: $grid-gutter-width-base, + xl: $grid-gutter-width-base +) !default; // Typography // |
