You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This isn't an issue, but I need to increase the minimum distance between min and max thumbs.
I have an range slider from 0 to 50 million, so, in case the chosen range is too next but higher values (eg. 30M and 32M), the labels are overlapping, instead bringing minimum value to bottom.
Checking SASS, I've found a --thumbs--too-close variable that stores a clamp function, but can't understand how it's working. Maybe this isn't the right place. So, I want to know how can I reduce the min threshold between min-max thumbs.
Thanks!
The text was updated successfully, but these errors were encountered:
Hi, You can play with the numbers and see what fits you best:
--thumbs-too-close:Clamp(
-1,1000* (Min(1,Max(var(--cb) -var(--ca) -10,-1)) +0.001), // try "10" which will cause the values to appear at different sides when the values are more far from each other. You can try different numbers. Maybe '10%' will work better for your case.
1
);
This isn't an issue, but I need to increase the minimum distance between min and max thumbs.
I have an range slider from 0 to 50 million, so, in case the chosen range is too next but higher values (eg. 30M and 32M), the labels are overlapping, instead bringing minimum value to bottom.
Checking SASS, I've found a
--thumbs--too-close
variable that stores a clamp function, but can't understand how it's working. Maybe this isn't the right place. So, I want to know how can I reduce the min threshold between min-max thumbs.Thanks!
The text was updated successfully, but these errors were encountered: