Skip to content

Commit

Permalink
[4.0] margin-bottom input groups (#34112)
Browse files Browse the repository at this point in the history
* [4.0] margin-bottom input groups

A previous pr of mine #33899 was too aggressive. This resolves that. See #34106 for test instructions

Dont forget this is a css change so npm run build:css

* lint
  • Loading branch information
brianteeman committed May 23, 2021
1 parent 75e7c3f commit 3c5850e
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@

.btn {
transition: none;
}

@include media-breakpoint-down(sm) {
@include media-breakpoint-down(sm) {
.btn {
margin-bottom: .25rem;
}
.input-group .btn {
margin-bottom: 0;
}
}

.btn-primary {
Expand Down

0 comments on commit 3c5850e

Please sign in to comment.