Skip to content

Commit

Permalink
Update font
Browse files Browse the repository at this point in the history
  • Loading branch information
hannahker committed Nov 23, 2024
1 parent f776909 commit efa2d84
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 11 deletions.
Binary file added assets/Stag Regular.woff
Binary file not shown.
22 changes: 16 additions & 6 deletions assets/bootstrap.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion layouts/content.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,17 @@ def info_container():
html.Div(
id="place-name",
style={"fontWeight": "bold", "fontSize": "24px"},
className="header",
),
dmc.Space(h=20),
html.Div(
id="num-exposed",
style={"fontSize": "18px"},
),
html.Div(id="test"),
dmc.Space(h=20),
dbc.Accordion(
style={"fontSize": "12px"},
style={"fontSize": "14px"},
children=[
dbc.AccordionItem(
[
Expand Down
4 changes: 3 additions & 1 deletion layouts/modal.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
def disclaimer_modal():
return dbc.Modal(
[
dbc.ModalHeader(dbc.ModalTitle("Disclaimer"), close_button=True),
dbc.ModalHeader(
dbc.ModalTitle("Disclaimer", className="header"), close_button=True
),
dbc.ModalBody(
[
dcc.Markdown(
Expand Down
8 changes: 5 additions & 3 deletions layouts/navbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ def navbar():
dbc.Col(
html.Img(
src="assets/centre_banner_greenbg.png", height=40
)
),
),
dbc.Col(
dbc.NavbarBrand(
"Risk Monitoring Dashboard", className="ms-2"
"Risk Monitoring Dashboard".upper(),
className=["ms-2", "header"],
)
),
],
Expand Down Expand Up @@ -46,6 +47,7 @@ def module_bar():
"color": "white",
"padding": "6px",
"paddingLeft": "75px",
"fontSize": "24px",
"fontSize": "20px",
},
className="header",
)

0 comments on commit efa2d84

Please sign in to comment.