Formatting of DataTable when migrating from dash_table_experiments to dash_table

Hi All, I’m still new but trying…

Working to make a UI with sliders and data_table. The format of the data table fonts looked the same as the sliders when using dash_table_experiments, but then I transitioned to the latest dash_table and the fonts no-longer look the same. Any guidance would be appreciated.

external_stylesheets = [‘https://codepen.io/chriddyp/pen/bWLwgP.css’]
app = dash.Dash(name, external_stylesheets=external_stylesheets)

Then
app.layout = html.Div(children=[

id=‘group-bug-datatable’,
data=[{}],
style_cell={‘textAlign’: ‘right’},
style_cell_conditional=[
{
‘if’: {‘column_id’: c},
‘textAlign’: ‘left’
} for c in [‘Group Name’]
],

columns=[{“name”: i, “id”: i} for i in [‘Group Name’, ‘Work Hours’, ‘Bug Count’]],
column_static_tooltip={“Work Hours”: “Total work and testing hours remaining”},
row_selectable=True,
sorting=True,
#style_as_list_view=True
)

])

I had to change from “rows” to “data” and the “columns” definition changed, but aside from that, the only change was switching from dash_table_experiments to dash_table.

Thanks!