Merge pull request #14564 from twbs/fixes_14557

Fixes #14557: .form-group margin in .navbar-form
This commit is contained in:
Mark Otto 2014-09-08 11:03:00 -07:00
commit 994d0b20aa
4 changed files with 9 additions and 2 deletions

View File

@ -4123,6 +4123,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
.navbar-form .form-group {
margin-bottom: 5px;
}
.navbar-form .form-group:last-child {
margin-bottom: 0;
}
}
@media (min-width: 768px) {
.navbar-form {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -299,6 +299,10 @@
.form-group {
@media (max-width: @grid-float-breakpoint-max) {
margin-bottom: 5px;
&:last-child {
margin-bottom: 0;
}
}
}