Alignement du logo et du numéro de version

This commit is contained in:
Colin Maudry
2026-01-29 02:38:10 +01:00
parent a0d6222424
commit 8c11a018a0
2 changed files with 23 additions and 13 deletions
+13 -8
View File
@@ -115,16 +115,21 @@ navbar = dbc.Navbar(
children=[
dbc.NavItem(
children=[
dcc.Link(html.H1("decp.info"), href="/", className="logo"),
html.P(
html.Div(
[
html.A(
version,
href="https://github.com/ColinMaudry/decp.info/blob/main/CHANGELOG.md",
)
dcc.Link(html.H1("decp.info"), href="/", className="logo"),
html.P(
[
html.A(
version,
href="https://github.com/ColinMaudry/decp.info/blob/main/CHANGELOG.md",
)
],
className="version",
),
],
className="version",
),
className="logo-wrapper",
)
],
style={"minWidth": "230px"},
),