dcc.Slider bootstrap theme doesn't work

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?

Hi @Mirk0_98

The Dash Core Components and the DataTable do not automatically update based on the Bootstrap theme.

To find out how to do this, see this site: