diff options
| author | Igor Tarasov <[email protected]> | 2016-09-08 07:44:28 +0400 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-09-07 20:44:28 -0700 |
| commit | 18258cbd9936c020b5e30fea758fc1373f661039 (patch) | |
| tree | 5ba089140f42648e782f529e98da5c915602aea9 | |
| parent | 07752bab7b248d9c064b7b85dcaeccccecde8fc7 (diff) | |
| download | bootstrap-18258cbd9936c020b5e30fea758fc1373f661039.tar.xz bootstrap-18258cbd9936c020b5e30fea758fc1373f661039.zip | |
Fix docs for heading sizes (#20646)
* Fix docs for heading sizes (sizes here were from v3)
* Added rem sizes to header size docs
* Fixed erroneous px sizes
| -rw-r--r-- | docs/content/typography.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/content/typography.md b/docs/content/typography.md index 139a7e00e..a59f50347 100644 --- a/docs/content/typography.md +++ b/docs/content/typography.md @@ -31,27 +31,27 @@ All HTML headings, `<h1>` through `<h6>`, are available. <tbody> <tr> <td><h1>h1. Bootstrap heading</h1></td> - <td class="type-info">Semibold 36px</td> + <td class="type-info">Semibold 2.5rem (40px)</td> </tr> <tr> <td><h2>h2. Bootstrap heading</h2></td> - <td class="type-info">Semibold 30px</td> + <td class="type-info">Semibold 2rem (32px)</td> </tr> <tr> <td><h3>h3. Bootstrap heading</h3></td> - <td class="type-info">Semibold 24px</td> + <td class="type-info">Semibold 1.75rem (28px)</td> </tr> <tr> <td><h4>h4. Bootstrap heading</h4></td> - <td class="type-info">Semibold 18px</td> + <td class="type-info">Semibold 1.5rem (24px)</td> </tr> <tr> <td><h5>h5. Bootstrap heading</h5></td> - <td class="type-info">Semibold 14px</td> + <td class="type-info">Semibold 1.25rem (20px)</td> </tr> <tr> <td><h6>h6. Bootstrap heading</h6></td> - <td class="type-info">Semibold 12px</td> + <td class="type-info">Semibold 1rem (16px)</td> </tr> </tbody> </table> |
