Commit d2389ec7 authored by Mark Otto's avatar Mark Otto

fixes #8832 and #8823: remove max-width from .navbar-brand when not mobile

parent 11e46845
...@@ -3051,6 +3051,7 @@ button.close { ...@@ -3051,6 +3051,7 @@ button.close {
@media screen and (min-width: 768px) { @media screen and (min-width: 768px) {
.navbar-brand { .navbar-brand {
float: left; float: left;
max-width: none;
margin-right: 5px; margin-right: 5px;
margin-left: -15px; margin-left: -15px;
} }
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -302,6 +302,7 @@ ...@@ -302,6 +302,7 @@
float: left; float: left;
margin-left: -(@navbar-padding-horizontal); margin-left: -(@navbar-padding-horizontal);
margin-right: 5px; margin-right: 5px;
max-width: none; // Disables the default mobile setting
} }
.navbar-nav { .navbar-nav {
float: left; float: left;
......
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