fix(observatoire): texte % blanc sur les barres de considérations

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Colin Maudry
2026-06-22 18:46:37 +02:00
parent eab06eedae
commit 8efd9b45eb
2 changed files with 14 additions and 6 deletions
+7 -3
View File
@@ -796,9 +796,13 @@ def get_considerations_card_content(lff: pl.LazyFrame) -> html.Div:
],
),
dbc.Progress(
value=pct,
label=f"{pct} %",
color=color,
dbc.Progress(
value=pct,
label=f"{pct} %",
bar=True,
color=color,
style={"color": "white"},
),
),
],
)