Commit e5872199 authored by Mark Otto's avatar Mark Otto

Fix navbar brand alignment by removing header padding when above 768px

parent 90d5e48f
......@@ -3238,6 +3238,9 @@ button.close {
@media (min-width: 768px) {
.navbar-header {
float: left;
padding-right: 0;
padding-left: 0;
margin-right: 15px;
}
}
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -36,6 +36,9 @@
@media (min-width: @grid-float-breakpoint) {
float: left;
padding-left: 0;
padding-right: 0;
margin-right: @navbar-padding-horizontal;
}
}
......
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