1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-17 21:49:09 +01:00

Fixes #7783: nuke bottom margin on fixed-bottom-navbar

This commit is contained in:
Mark Otto 2013-05-04 13:11:20 -07:00
parent 7d41a38769
commit dcf7cc084d
2 changed files with 9 additions and 3 deletions

View File

@ -3578,6 +3578,7 @@ button.close {
.navbar-fixed-bottom {
bottom: 0;
margin-bottom: 0;
}
.navbar-brand {

View File

@ -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) {