react-input-range
react-input-range copied to clipboard
How to hide the left side tooltip based on certain conditions
I want to hide the left side tooltip based on certain condition using css. But I couldn't find any classname difference for both left and right side tooltip.
// part of my .scss
.input-range {
&__track {
& > span:nth-child(2) {
display: none;
}
}
}