mirror of https://github.com/twbs/bootstrap.git
Fixes #14557: Reset the bottom margin on .form-group:last-child in .navbar-form to prevent extra spacing
This commit is contained in:
parent
5578733238
commit
c6d7d71549
|
@ -4123,6 +4123,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
||||||
.navbar-form .form-group {
|
.navbar-form .form-group {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
}
|
}
|
||||||
|
.navbar-form .form-group:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
.navbar-form {
|
.navbar-form {
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -299,6 +299,10 @@
|
||||||
.form-group {
|
.form-group {
|
||||||
@media (max-width: @grid-float-breakpoint-max) {
|
@media (max-width: @grid-float-breakpoint-max) {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue