Skip to content

Commit

Permalink
small fix to make printing work properly again (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinMacaulay authored Nov 30, 2023
1 parent 4585ae1 commit 3c026d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ $font_path: ("../../../assets");

#roadsafety-header {
display: none;
all: unset !important;

.header {
display: none;
}
}

#roadesafety-footer {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,21 +155,12 @@ export const Header = () => {
</Col>
<Col sm={2} className="links fw-bold col-right">
&nbsp;
{userAdminInfo ? (
{userAdminInfo && (
<div>
<Link className="d-block text-light" to="/admin-console">
Admin
</Link>
</div>
) : (
<div>
<a
className="d-block text-light"
href="https://example.com"
>
Settings
</a>
</div>
)}
<a
className="d-block text-light"
Expand Down

0 comments on commit 3c026d8

Please sign in to comment.