0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00

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

This commit is contained in:
Mark Otto 2013-08-17 17:26:52 -07:00
parent 90d5e48f5f
commit e587219958
3 changed files with 7 additions and 1 deletions

View File

@ -3238,6 +3238,9 @@ button.close {
@media (min-width: 768px) {
.navbar-header {
float: left;
padding-right: 0;
padding-left: 0;
margin-right: 15px;
}
}

File diff suppressed because one or more lines are too long

View File

@ -36,6 +36,9 @@
@media (min-width: @grid-float-breakpoint) {
float: left;
padding-left: 0;
padding-right: 0;
margin-right: @navbar-padding-horizontal;
}
}