diff options
| author | Mark Otto <[email protected]> | 2016-12-28 17:40:03 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-12-28 19:09:20 -0800 |
| commit | d9fcdcfa767c7579e90e334f42457b9b5378f67d (patch) | |
| tree | 39336f92e59a74bab93e4aaa07fe5af87c2e4e99 | |
| parent | b350e60e82efd330e5896c3a2345c43f6fbdcf1a (diff) | |
| download | bootstrap-d9fcdcfa767c7579e90e334f42457b9b5378f67d.tar.xz bootstrap-d9fcdcfa767c7579e90e334f42457b9b5378f67d.zip | |
add position relative to container
allows for better/easier positioning of elements within (e.g., a toggler in a navbar)
| -rw-r--r-- | scss/mixins/_grid.scss | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scss/mixins/_grid.scss b/scss/mixins/_grid.scss index 23b11dbed..9cd8c7bbb 100644 --- a/scss/mixins/_grid.scss +++ b/scss/mixins/_grid.scss @@ -3,6 +3,7 @@ // Generate semantic grid columns with these mixins. @mixin make-container($gutters: $grid-gutter-widths) { + position: relative; margin-left: auto; margin-right: auto; |
