I’m new to Dash and struggling to get my Footer aligned horizontally (see picture). Right now they are just stacked veritically. Suggestions?
Here is my code
from dash import html
import dash_bootstrap_components as dbc
footer = html.Footer(
dbc.Container(
[
html.Hr(),
"© Copyright 2023 my company",
dbc.NavItem(
dbc.NavLink(
children="Terms of Use",
style={"color": "white"},
href="/terms-of-use",
)
),
dbc.NavItem(
dbc.NavLink(
children="Privacy Policy",
style={"color": "white"},
href="/privacy-policy",
)
),
]
)
)