aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2016-11-28 17:05:17 -0800
committerMark Otto <[email protected]>2016-11-28 17:05:36 -0800
commit339f8c3c48091675ffabff5663d78b34de88bcb4 (patch)
treedffb4828fb85bd1248b73f328023714da9623f5c /docs
parent8c17e5fb3c77da66a682355effe9ce336ead690e (diff)
downloadbootstrap-339f8c3c48091675ffabff5663d78b34de88bcb4.tar.xz
bootstrap-339f8c3c48091675ffabff5663d78b34de88bcb4.zip
fixes #21219: update docs to reflect current sm breakpoint value
Diffstat (limited to 'docs')
-rw-r--r--docs/migration.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/migration.md b/docs/migration.md
index 3c00c8290..9b6e006c7 100644
--- a/docs/migration.md
+++ b/docs/migration.md
@@ -24,7 +24,7 @@ Here are the big ticket items you'll want to be aware of when moving from v3 to
- Switched from [Less](http://lesscss.org/) to [Sass](http://sass-lang.com/) for our source CSS files.
- Switched from `px` to `rem` as our primary CSS unit, though pixels are still used for media queries and grid behavior as viewports are not affected by type size.
- Global font-size increased from `14px` to `16px`.
-- Added a new grid tier for ~`480px` and below.
+- Added a new grid tier for smaller devices at `576px` and below.
- Replaced the separate optional theme with configurable options via SCSS variables (e.g., `$enable-gradients: true`).
### Grid system
@@ -121,7 +121,7 @@ New to Bootstrap 4 is the Reboot, a new stylesheet that builds on Normalize with
### Grid system
-- Added a new `~480px` grid breakpoint, meaning there are now five total tiers.
+- Added a new `576px` grid breakpoint as `sm`, meaning there are now five total tiers (`xs`, `sm`, `md`, `lg`, and `xl`).
- Renamed the responsive grid modifier classes from `.col-{breakpoint}-{modifier}-{size}` to `.{modifier}-{breakpoint}-{size}` for simpler grid classes. For example, instead of `.col-md-3.col-md-push-9` it's `col-md-3.push-md-9`.
- Overhauled the grid mixins to merge `make-col` and `make-col-span` into a single `make-col` mixin, thereby ensuring mixins and predefined classes utilize the same float/flex behaviors.
- Added flexbox utility classes for grid system and components.