aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-08-15 10:43:16 -0700
committerMark Otto <[email protected]>2017-08-15 10:43:16 -0700
commit62a3e9c1f061525973ff30e75996e79b3413c1b2 (patch)
tree181f88ea7487ffcd110c611c51e8f96fab3582c2 /docs
parent96e4efb49a26129e8cb0c32a60b96f094ce37011 (diff)
downloadbootstrap-62a3e9c1f061525973ff30e75996e79b3413c1b2.tar.xz
bootstrap-62a3e9c1f061525973ff30e75996e79b3413c1b2.zip
fixes #23464: update grid migration docs to mention order replaced push/pull
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/migration.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/4.0/migration.md b/docs/4.0/migration.md
index 6a2420927..08a3008fe 100644
--- a/docs/4.0/migration.md
+++ b/docs/4.0/migration.md
@@ -139,7 +139,8 @@ New to Bootstrap 4 is the [Reboot]({{ site.baseurl }}/docs/{{ site.docs_version
### Grid system
- 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`.
+- Renamed the responsive grid modifier classes from `.col-{breakpoint}-{modifier}-{size}` to `.{modifier}-{breakpoint}-{size}` for simpler grid classes.
+- Dropped push and pull modifier classes for the new flexbox-powered `order` classes. For example, instead of `.col-8.push-4` and `.col-4.pull-8`, you'd use `.col-8.order-2` and `.col-4.order-1`.
- Added flexbox utility classes for grid system and components.
### List groups