Skip to content

Commit

Permalink
Add teal background colour and run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-clarke-dluhc committed Jul 11, 2024
1 parent 3c1dab7 commit 64a3c97
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions gov_uk_dashboards/components/plotly/header.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def header(title: str, strong_class: str = "", background_colour: str = None):
"OFFICIAL",
className="govuk-tag protective-marking",
id="protective-marking",
style={"background-color": "#000000"}
style={"background-color": "#000000"},
)
],
className=f"{strong_class}",
Expand All @@ -57,10 +57,11 @@ def header(title: str, strong_class: str = "", background_colour: str = None):
className="govuk-header__content",
),
className="govuk-header__container govuk-width-container",
style={"border-bottom": "10px solid #000000"}
style={"border-bottom": "10px solid #000000"},
),
className="govuk-header",
role="banner",
style=header_style | {"border-color": "#000000"},
style=header_style
| {"border-color": "#000000", "background-color": "rgb(0,98,94)"},
**{"data-module": "govuk-header"},
)
)

0 comments on commit 64a3c97

Please sign in to comment.