From: Geremia Taglialatela Date: Mon, 23 Jan 2017 11:20:07 +0000 (+0100) Subject: Fix body padding in Dashboard and Jumbotron examples. X-Git-Tag: v4.0.0-beta~147^2~182 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=104477af17a7657f7df556fff3f448cd2d2a82fa;p=thirdparty%2Fbootstrap.git Fix body padding in Dashboard and Jumbotron examples. The actual navbar height is 3.5rem. --- diff --git a/docs/examples/dashboard/dashboard.css b/docs/examples/dashboard/dashboard.css index 99f2962b5d..b1248cd680 100644 --- a/docs/examples/dashboard/dashboard.css +++ b/docs/examples/dashboard/dashboard.css @@ -2,9 +2,9 @@ * Base structure */ -/* Move down content because we have a fixed navbar that is 50px tall */ +/* Move down content because we have a fixed navbar that is 3.5rem tall */ body { - padding-top: 50px; + padding-top: 3.5rem; } /* diff --git a/docs/examples/jumbotron/jumbotron.css b/docs/examples/jumbotron/jumbotron.css index 2f72eb954a..d751264eff 100644 --- a/docs/examples/jumbotron/jumbotron.css +++ b/docs/examples/jumbotron/jumbotron.css @@ -1,4 +1,4 @@ -/* Move down content because we have a fixed navbar that is 50px tall */ +/* Move down content because we have a fixed navbar that is 3.5rem tall */ body { - padding-top: 2rem; + padding-top: 3.5rem; }