davidstutz/bootstrap-multiselect

Scroll blocking on mobile devices

livingroot opened this issue · 2 comments

This line is blocking scroll on touch device.

In Bootstrap 4 > add rules in your css

button.multiselect-option.dropdown-item {
width: auto !important;
}
span.multiselect-group.dropdown-item-text {
display: inline-flex !important;
cursor: default;
}

or use SASS || Mobile Sizes

@include media-breakpoint-down(sm)

how you want.

Is it necessary for 4.6?