Commit 3bb5644c authored by Mark Otto's avatar Mark Otto
Browse files

Fix alignment of navbar header in fixed navbars

parent afdaa0e6
No related merge requests found
Showing with 9 additions and 1 deletion
+9 -1
...@@ -3295,6 +3295,10 @@ button.close { ...@@ -3295,6 +3295,10 @@ button.close {
.navbar-fixed-bottom { .navbar-fixed-bottom {
border-radius: 0; border-radius: 0;
} }
.navbar-fixed-top .navbar-header,
.navbar-fixed-bottom .navbar-header {
margin-left: -15px;
}
} }
.navbar-fixed-top { .navbar-fixed-top {
......
This diff is collapsed.
...@@ -112,6 +112,10 @@ ...@@ -112,6 +112,10 @@
// Undo the rounded corners // Undo the rounded corners
@media (min-width: @grid-float-breakpoint) { @media (min-width: @grid-float-breakpoint) {
border-radius: 0; border-radius: 0;
.navbar-header {
margin-left: -@navbar-padding-horizontal;
}
} }
} }
.navbar-fixed-top { .navbar-fixed-top {
......
Supports Markdown
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