diff options
| author | Mark Otto <[email protected]> | 2016-12-23 11:48:03 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-12-24 14:21:04 -0800 |
| commit | 5464f4ab7e1ea5e6ef841609dbeb04d0436655db (patch) | |
| tree | 494714fed716ec3bcd1217e74cfcf2aecbf24dc8 /docs/_data | |
| parent | e4933c72da93453d45af2dc71197000742ef1bb4 (diff) | |
| download | bootstrap-5464f4ab7e1ea5e6ef841609dbeb04d0436655db.tar.xz bootstrap-5464f4ab7e1ea5e6ef841609dbeb04d0436655db.zip | |
Start to blow out and document more flexbox utilities
- Adds new flexbox.md file to utilities docs
- Adds a `breakpoints.yml` data file for easier output of responsive classes in the docs. Will put this to use on other pages soon.
- Adds hella flex utils. There are some dupes for now, but they'll get removed in time.
Diffstat (limited to 'docs/_data')
| -rw-r--r-- | docs/_data/breakpoints.yml | 29 | ||||
| -rw-r--r-- | docs/_data/nav.yml | 1 |
2 files changed, 30 insertions, 0 deletions
diff --git a/docs/_data/breakpoints.yml b/docs/_data/breakpoints.yml new file mode 100644 index 000000000..3c8cfe293 --- /dev/null +++ b/docs/_data/breakpoints.yml @@ -0,0 +1,29 @@ +- breakpoint: xs + abbr: "" + name: Extra small + min-width: 0px + container: "" + +- breakpoint: sm + abbr: -sm + name: Small + min-width: 576px + container: 540px + +- breakpoint: md + abbr: -md + name: Medium + min-width: 768px + container: 720px + +- breakpoint: lg + abbr: -lg + name: Large + min-width: 992px + container: 960px + +- breakpoint: xl + abbr: -xl + name: Extra large + min-width: 1200px + container: 1140px diff --git a/docs/_data/nav.yml b/docs/_data/nav.yml index 6723352f4..256e1bb9d 100644 --- a/docs/_data/nav.yml +++ b/docs/_data/nav.yml @@ -56,6 +56,7 @@ - title: Clearfix - title: Close icon - title: Colors + - title: Flexbox - title: Display property - title: Image replacement - title: Invisible content |
