Améliorations styles tableaux, headers

This commit is contained in:
Colin Maudry
2026-01-30 20:13:59 +01:00
parent 55bb92468e
commit c3ebdb0057
4 changed files with 12 additions and 18 deletions
+4 -10
View File
@@ -91,11 +91,8 @@ def get_yearly_statistics(statistics, today_str) -> html.Div:
page_size=10,
sort_action="none",
filter_action="none",
style_header={
"border": "solid 1px rgb(179, 56, 33)",
"backgroundColor": "rgb(179, 56, 33)",
"color": "white",
},
style_header={"fontFamily": "Inter", "fontSize": "16px"},
style_cell={"fontFamily": "Inter", "fontSize": "16px"},
)
return html.Div(children=table, className="marches_table")
@@ -210,11 +207,8 @@ def get_sources_tables(source_path) -> html.Div:
],
sort_action="native",
markdown_options={"html": True},
style_header={
"border": "solid 1px rgb(179, 56, 33)",
"backgroundColor": "rgb(179, 56, 33)",
"color": "white",
},
style_header={"fontFamily": "Inter", "fontSize": "16px"},
style_cell={"fontFamily": "Inter", "fontSize": "16px"},
)
return html.Div(children=datatable)