Hide divider control on mobile

Add this code to the Custom CSS field on the Style tab of your Before and After Slider widget’s settings:

@media(max-width: 480px) {
    .global-styles, [class*="PairSliderDivisionControl__Carriage"] {
        display:none!important;
    }
}