react-html5video
react-html5video copied to clipboard
Range input thumb blocks mouse input
If you click somewhere on the volume slider that's near the existing value nothing happens. This is because you're actually clicking on the draggable 'thumb', not the track
Adding this solves the problem in Chrome:
input[type='range']::-webkit-slider-thumb {
pointer-events: none;
}
Could be an easy PR for a beginner