Default when the text is to long it wraps underneath the checkbox. This can look a bit messy. Maybe it's a good idea to prevent wrapping. In my template I used the SCSS below to fix it.
.mod-jfilters_filters .jfilters-item-link--dummy-input .jfilters-item__label-text {
padding: 0;
margin: 0;
}
.mod-jfilters_filters .jfilters-item__text {
display: block;
padding-left: 27px;
}