Hi,
I created a simple slider using
app = Dash(__name__, external_stylesheets=[dbc.themes.MINTY])
server = app.server
app.layout = html.Div(
[
dcc.Slider(0,10000,10,
value=10,
marks=None)
]
)
if __name__ == '__main__':
app.run_server(debug=True)
But the slider doen’t get the MINTY theme that the rest of the page has. What’s causing this problem here?