diff options
| author | Chris Rebert <[email protected]> | 2014-12-19 20:25:26 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-12-19 20:25:26 -0800 |
| commit | c0da3d0b23063b0ea992bef30e270087bf9e4b52 (patch) | |
| tree | a362fad206af391281d25d03e0aa00e267a17057 | |
| parent | c58e3803af6cc5b53bd8b2104c1a5ea31067627d (diff) | |
| download | bootstrap-c0da3d0b23063b0ea992bef30e270087bf9e4b52.tar.xz bootstrap-c0da3d0b23063b0ea992bef30e270087bf9e4b52.zip | |
Document removal of deprecated screen size variables in the migration guide
| -rw-r--r-- | docs/migration.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/migration.md b/docs/migration.md index dd3738c7b..c5416b663 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -51,4 +51,10 @@ The following components have been removed in v4.0.0. | Wells | | Cards | | Justified navs | | | +The following deprecated Less/SCSS variables have been removed in v4.0.0: +* `@screen-phone`, `@screen-tablet`, `@screen-desktop`, `@screen-lg-desktop`. Use the more abstract `$screen-{xs,sm,md,lg,xl}-*` variables instead. +* `@screen-sm`, `@screen-md`, `@screen-lg`. Use the more clearly named `$screen-{xs,sm,md,lg,xl}-min` variables instead. +* `@screen-xs`, `@screen-xs-min`. The extra small breakpoint has no lower bound, so these variables were logically absurd. Reformulate your expression in terms of `$screen-xs-max` instead. +* `@grid-float-breakpoint` + ## Additional notes |
