diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/content/typography.md | 4 | ||||
| -rw-r--r-- | docs/migration.md | 14 |
2 files changed, 16 insertions, 2 deletions
diff --git a/docs/content/typography.md b/docs/content/typography.md index 3145209ee..264686b05 100644 --- a/docs/content/typography.md +++ b/docs/content/typography.md @@ -255,13 +255,13 @@ html { @include media-breakpoint-up(md) { html { - font-size: 28px; + font-size: 20px; } } @include media-breakpoint-up(lg) { html { - font-size: 20px; + font-size: 28px; } } {% endhighlight %} diff --git a/docs/migration.md b/docs/migration.md index d1c58c94f..6141a67f5 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -98,6 +98,20 @@ New to Bootstrap 4 is the Reboot, a new stylesheet that builds on Normalize with Dropped entirely for the new card component. +#### Panels + +- `.panel` to `.card` +- `.panel-default` removed and no replacement +- `.panel-heading` to `.card-header` +- `.panel-title` to `.card-title` +- `.panel-body` to `.card-block` +- `.panel-footer` to `.card-footer` +- `.panel-primary` to `.card-primary` and `.card-inverse` +- `.panel-success` to `.card-success` and `.card-inverse` +- `.panel-info` to `.card-info` and `.card-inverse` +- `.panel-warning` to `.card-warning` and `.card-inverse` +- `.panel-danger` to `.card-danger` and `.card-inverse` + ### Carousel - Renamed `.item` to `.carousel-item`. |
