Hi,
I have the following code
dbc.Col(dbc.Table.from_dataframe(table_df.tail(5),
striped=True, bordered=True, hover=True,id='warnings_tb',
style = {
'font_family': 'cursive',
'font_size': '54px',
'text_align': 'center'
}
,
),
width=5
),
The table is rendered inside the column, however style
is not changing anything inside the table.
What am I doing wrong?
Thank you in advance!