diff options
| author | Mark Otto <[email protected]> | 2016-02-06 11:31:46 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-02-06 11:31:46 -0800 |
| commit | 95f34be0936f6309fde4d3ecb408cdffb4b0c2db (patch) | |
| tree | d342761e0635617db6e3188543f3d4a2eb74456a /docs/_layouts/docs.html | |
| parent | 414997baa83858b43e9f45af90097f93ed2d6797 (diff) | |
| download | bootstrap-95f34be0936f6309fde4d3ecb408cdffb4b0c2db.tar.xz bootstrap-95f34be0936f6309fde4d3ecb408cdffb4b0c2db.zip | |
More grid updates
- Flexbox responsive behavior fixed with specific .col-{breakpoint} classes now added
- Dropped the make-col mixin in favor of a column-basics placeholder that we can extend across our grid infrastructure
- Updated docs to use required .col-xs-12 (as a safeguard for when folks enable flexbox mode--this isn't necessary in default grid mode)
- Update flexbox grid docs to include responsive docs, tweak some other bits too
Diffstat (limited to 'docs/_layouts/docs.html')
| -rw-r--r-- | docs/_layouts/docs.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/_layouts/docs.html b/docs/_layouts/docs.html index e57dfdd3c..6e8cddf21 100644 --- a/docs/_layouts/docs.html +++ b/docs/_layouts/docs.html @@ -21,10 +21,10 @@ <div class="container"> <div class="row"> - <div class="col-md-3 push-md-9 bd-sidebar"> + <div class="col-xs-12 col-md-3 push-md-9 bd-sidebar"> {% include nav-docs.html %} </div> - <div class="col-md-9 pull-md-3 bd-content"> + <div class="col-xs-12 col-md-9 pull-md-3 bd-content"> <h1 class="bd-title" id="content">{{ page.title }}</h1> {{ content }} </div> |
