Commit dcf7cc08 authored by Mark Otto's avatar Mark Otto

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

parent 7d41a387
...@@ -3578,6 +3578,7 @@ button.close { ...@@ -3578,6 +3578,7 @@ button.close {
.navbar-fixed-bottom { .navbar-fixed-bottom {
bottom: 0; bottom: 0;
margin-bottom: 0;
} }
.navbar-brand { .navbar-brand {
......
...@@ -67,8 +67,13 @@ ...@@ -67,8 +67,13 @@
z-index: @zindex-navbar-fixed; z-index: @zindex-navbar-fixed;
border-radius: 0; border-radius: 0;
} }
.navbar-fixed-top { top: 0; } .navbar-fixed-top {
.navbar-fixed-bottom { bottom: 0; } top: 0;
}
.navbar-fixed-bottom {
bottom: 0;
margin-bottom: 0; // override .navbar defaults
}
...@@ -262,7 +267,7 @@ ...@@ -262,7 +267,7 @@
// Inverse navbar // Responsive navbar
// -------------------------------------------------- // --------------------------------------------------
@media screen and (min-width: @screen-tablet) { @media screen and (min-width: @screen-tablet) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment