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; +}