Commit c6d7d715 authored by Mark Otto's avatar Mark Otto

Fixes #14557: Reset the bottom margin on .form-group:last-child in...

Fixes #14557: Reset the bottom margin on .form-group:last-child in .navbar-form to prevent extra spacing
parent 55787332
...@@ -4123,6 +4123,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn { ...@@ -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 {
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -299,6 +299,10 @@ ...@@ -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;
}
} }
} }
......
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