From 64579505d24052e7edb14f7f8d63a44bb72b5fea Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 4 Mar 2014 13:52:13 -0800 Subject: [PATCH] Fixes #12916: Don't let .lead resize on viewport change --- docs/examples/non-responsive/non-responsive.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/examples/non-responsive/non-responsive.css b/docs/examples/non-responsive/non-responsive.css index b0e1920b4e..c36e82e381 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;