diff options
| author | Mark Otto <[email protected]> | 2014-10-27 03:07:25 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-10-27 03:07:25 -0700 |
| commit | 125c3859a0ebc87031853117012bef3a3a2b6aed (patch) | |
| tree | 11bfab27fefa80d86fd48172e7c1bfba5d1710a7 /docs/examples | |
| parent | 37f10fe92f2e863f4af0f560c3d576540fb0db7e (diff) | |
| download | bootstrap-125c3859a0ebc87031853117012bef3a3a2b6aed.tar.xz bootstrap-125c3859a0ebc87031853117012bef3a3a2b6aed.zip | |
add height to new navbar examples to show behavior
Diffstat (limited to 'docs/examples')
| -rw-r--r-- | docs/examples/navbar-top-fixed/navbar-top-fixed.css | 2 | ||||
| -rw-r--r-- | docs/examples/navbar-top/navbar-top.css | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/docs/examples/navbar-top-fixed/navbar-top-fixed.css b/docs/examples/navbar-top-fixed/navbar-top-fixed.css index 3207ab177..3e4f59f4b 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 e69de29bb..25bbdde09 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; +} |
