Changing the size of the controls for an html Audio element in Plotly Dash?

Is there any way to increase the size of the controls (play/pause) using html.Audio() in Dash? On mobile the button is very small and hard to click on without zooming in. Using style={height: } only changes the size of the entire element (which is actually blank), it doesn’t change the size of the controls themselves.

I don’t think so unfortunately. the style and the component is sort of is built in to the browser… there isn’t anything “dash specific” about it - it’s “just” the HTML audio component. You might have luck searching google for eg “html audio element custom controls” or “html audio element custom css”

Let us know what you find!