* Allow text of custom form labels to wrap like the default ones
* Switch from using after to force line breaks to float/clear combo in stacked custom forms
.custom-control {
position: relative;
- display: inline;
+ display: inline-block;
padding-left: $custom-control-gutter;
cursor: pointer;
.custom-control-indicator {
position: absolute;
- top: .0625rem;
+ top: .25rem;
left: 0;
display: block;
width: $custom-control-indicator-size;
.custom-controls-stacked {
.custom-control {
- display: inline;
-
- &::after {
- display: block;
- margin-bottom: $custom-control-spacer-y;
- content: "";
- }
+ float: left;
+ clear: left;
+ .custom-control {
margin-left: 0;