From 125c3859a0ebc87031853117012bef3a3a2b6aed Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 27 Oct 2014 03:07:25 -0700 Subject: [PATCH] add height to new navbar examples to show behavior --- docs/examples/navbar-top-fixed/navbar-top-fixed.css | 2 ++ docs/examples/navbar-top/navbar-top.css | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/docs/examples/navbar-top-fixed/navbar-top-fixed.css b/docs/examples/navbar-top-fixed/navbar-top-fixed.css index 3207ab1779..3e4f59f4b2 100644 --- a/docs/examples/navbar-top-fixed/navbar-top-fixed.css +++ b/docs/examples/navbar-top-fixed/navbar-top-fixed.css @@ -1,3 +1,5 @@ body { + /* Show it's not fixed to the top */ + min-height: 75rem; padding-top: 6rem; } diff --git a/docs/examples/navbar-top/navbar-top.css b/docs/examples/navbar-top/navbar-top.css index e69de29bb2..25bbdde094 100644 --- a/docs/examples/navbar-top/navbar-top.css +++ b/docs/examples/navbar-top/navbar-top.css @@ -0,0 +1,4 @@ +/* Show it's not fixed to the top */ +body { + min-height: 75rem; +}