Skip to content

Commit

Permalink
fix: change contrast for contact/copyright pages (fixes color-contras…
Browse files Browse the repository at this point in the history
…t violation)
  • Loading branch information
dleard committed Aug 13, 2020
1 parent d0e6980 commit 8fc1078
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/pages/resources/contact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ class Contact extends Component<Props> {
with any questions or concerns.
</p>
</Container>
<style jsx>{`
a {
color: #0053b3;
}
`}</style>
</DefaultLayout>
);
}
Expand Down
5 changes: 5 additions & 0 deletions app/pages/resources/copyright.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,11 @@ class Copyright extends Component<Props> {

<p>phone: 250-216-8935</p>
</Container>
<style jsx>{`
a {
color: #0053b3;
}
`}</style>
</DefaultLayout>
);
}
Expand Down

0 comments on commit 8fc1078

Please sign in to comment.