how to disable the halo effect of pressing the thumb of the material ui slider?

Viewed 297
1 Answers
.MuiSlider-thumb.Mui-focusVisible, .MuiSlider-thumb:hover {
    box-shadow:none !important;
}

However, it would be nice if you provide a working example next time so we don't have to dig into documentation just to help you. Ty.

Related