When creating an Upload component with
dcc.Upload(
id='upload',
children=...,
style={
...
}
),
The style specified is not applied to the top-level div generated but applied to another div one level below - e.g.
<div id="upload">
<div class="" aria-disabled="false" style="...">
</div>
</div>
This creates some issues as I cannot control the style of top-level div, so what I hope to achieve is actually
<div id="upload" style="...">
<div class="" aria-disabled="false" >
</div>
</div>