Hey @saxon11 welcome to the forums!
I think the style argument is outside of the dbc.DropdownMenu
. In fact, there is one squared bracket too much in the code you provided.
The color argument link
may be the reason for your behaviour.
dbc.DropdownMenuItem(
"External Link", href="https://github.com"
),
dbc.DropdownMenuItem(
"External relative",
href="/docs/components/dropdown_menu",
external_link=True,
),
],
label="Menu",
# color="link",
# style={"text-decoration": "none"},
)
)
if __name__ == '__main__':
app.run(debug=True, port=8054)