Hi,
I would like to change the text color of a button when someone hover over it. However, I don’t know how I can access the css within the style option. Does anyone has an idea how to do it.
I tried the follwing but without success:
dbc.Button(
'Logout',
id='logout-button',
block=True,
style={
'background-color': '#2dbecd',
'color': '#ffc832',
'border': '0px',
'font-weight': 'bold',
'hover': {
'color': '#ffffff'
}
}
),