I’m using a RangeSlider in Pluto but it is way too small. I’ve found this reddit post where a user wrote that putting this inside a cell will make all sliders bigger:
html"""
<style>
input[type*="range"] {
width: 100%;
}
</style>
"""
This works, but only for Slider
s, not for RangeSlider
s. Thing is, I don’t seem to be able to find any documentation about using HTML in Pluto, except for some examples here and there. How do I make RangeSlider
s larger?