Skip to content

Commit

Permalink
fix(ui): text color in footer changed to be adaptive (#500)
Browse files Browse the repository at this point in the history
Co-authored-by: Lukas Tresch <[email protected]>
  • Loading branch information
lukastresch and Lukas Tresch authored Nov 7, 2024
1 parent d261023 commit 21a9a60
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions ui/src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,28 @@ function Footer() {
<footer className="footer is-hidden-print">
<div className="content has-text-centered is-flex is-align-content-space-around is-align-items-center is-justify-content-center">
<a
className="has-text-grey-light"
className="has-text-current"
href="https://github.com/f-eld-ch/sitrep"
target="_blank"
rel="noopener noreferrer"
>
<span className="icon-text is-small has-text-black">
<span className="icon-text is-small is-size-7">
<span className="icon is-align-content-center">
<FontAwesomeIcon icon={faGithub} />
</span>
<span>
<p className="has-text-dark">SitRep</p>
<strong>
<p className="is-size-7 is-family-monospace has-text-current">SitRep</p>
</strong>
</span>
</span>
</a>

<p className="is-size-7 is-family-monospace ml-1">
made with <FontAwesomeIcon icon={faHeart} color="red" /> in Switzerland by{" "}
<strong>
<a className="has-text-dark" href="https://github.com/f-eld-ch" target="_blank" rel="noopener noreferrer">
F-ELD
<p className="is-size-7 is-family-monospace ml-2">
made with <FontAwesomeIcon icon={faHeart} color="red" /> in Switzerland by
<strong className="has-text-current">
<a className="has-text-current" href="https://github.com/f-eld-ch" target="_blank" rel="noopener noreferrer">
{" "}F-ELD
</a>
</strong>
</p>
Expand Down

0 comments on commit 21a9a60

Please sign in to comment.