diff options
| author | Mark Otto <[email protected]> | 2013-05-04 13:11:20 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-05-04 13:11:20 -0700 |
| commit | dcf7cc084d6b2d0522860c4c9be6e914c67ab91a (patch) | |
| tree | 8224fc17f3ede4707bef78ddfb6c7d708e6764e2 /less | |
| parent | 7d41a387693c49347e06572ceb7ec2207ee30d46 (diff) | |
| download | bootstrap-dcf7cc084d6b2d0522860c4c9be6e914c67ab91a.tar.xz bootstrap-dcf7cc084d6b2d0522860c4c9be6e914c67ab91a.zip | |
Fixes #7783: nuke bottom margin on fixed-bottom-navbar
Diffstat (limited to 'less')
| -rw-r--r-- | less/navbar.less | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/less/navbar.less b/less/navbar.less index bf9c3646a..d4e5286a5 100644 --- a/less/navbar.less +++ b/less/navbar.less @@ -67,8 +67,13 @@ z-index: @zindex-navbar-fixed; border-radius: 0; } -.navbar-fixed-top { top: 0; } -.navbar-fixed-bottom { bottom: 0; } +.navbar-fixed-top { + top: 0; +} +.navbar-fixed-bottom { + bottom: 0; + margin-bottom: 0; // override .navbar defaults +} @@ -262,7 +267,7 @@ -// Inverse navbar +// Responsive navbar // -------------------------------------------------- @media screen and (min-width: @screen-tablet) { |
