diff options
| author | Mark Otto <[email protected]> | 2014-03-04 13:52:13 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-03-04 13:52:13 -0800 |
| commit | 64579505d24052e7edb14f7f8d63a44bb72b5fea (patch) | |
| tree | 8b1a1a1e42516cc81ded77588010bff1eda6e8d9 /docs/examples/non-responsive/non-responsive.css | |
| parent | 5193f9f607affbb5c01f5215ed19168ce3530ca5 (diff) | |
| download | bootstrap-64579505d24052e7edb14f7f8d63a44bb72b5fea.tar.xz bootstrap-64579505d24052e7edb14f7f8d63a44bb72b5fea.zip | |
Fixes #12916: Don't let .lead resize on viewport change
Diffstat (limited to 'docs/examples/non-responsive/non-responsive.css')
| -rw-r--r-- | docs/examples/non-responsive/non-responsive.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/examples/non-responsive/non-responsive.css b/docs/examples/non-responsive/non-responsive.css index b0e1920b4..c36e82e38 100644 --- a/docs/examples/non-responsive/non-responsive.css +++ b/docs/examples/non-responsive/non-responsive.css @@ -11,6 +11,11 @@ body { padding-bottom: 30px; } +/* Don't let the lead text change font-size. */ +.lead { + font-size: 16px; +} + /* Finesse the page header spacing */ .page-header { margin-bottom: 30px; |
