DCC Slider Size

I use a dcc slider on one of my pages. Particularly for users on mobile, they complain that it’s small and hard to utilize. Are there style / properties I can use to make the slider bigger (bigger slider button, bigger font, etc)?

Thanks in advance!

1 Like

i know this is a little late but I got it to work but putting the slider in a div and then changing the divs transform style

html.Div([
dcc.Slider(
id=‘temp-slider’,
min=0.5,
max=1.5,
value=0.8,
step=0.1,
),
], style= {‘transform’: ‘scale(2)’}),