Skip to content
This repository has been archived by the owner on Dec 28, 2024. It is now read-only.

Commit

Permalink
LL-112 (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
1510749 authored Jan 2, 2023
2 parents fefffca + 44c3b10 commit b4f912e
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 3 deletions.
15 changes: 12 additions & 3 deletions client/src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,24 @@ export const Footer = () => {
{/* Column1 */}
<div>
<h4>luminosityleds</h4>
<p>
About | Team | <a href='https://github.com/pogi7/luminosityleds/releases/latest'>What's New?</a>
<p className="about">
About
</p>
<p className="team">
Team
</p>
<p className="whats-new">
<a href='https://github.com/pogi7/luminosityleds/releases/latest'>What's New?</a>
</p>
</div>
{/* Column2 */}
<div>
<h4>Contact</h4>
<p>
<FontAwesomeIcon icon={faGithub} /> | <FontAwesomeIcon icon={faAtlassian} /> | <FontAwesomeIcon icon={faDiscord} /> | &copy; {new Date().getFullYear()} | All rights reserved
<FontAwesomeIcon icon={faGithub} /> | <FontAwesomeIcon icon={faAtlassian} /> | <FontAwesomeIcon icon={faDiscord} />
</p>
<p>
&copy; {new Date().getFullYear()} | All rights reserved
</p>
</div>
</div>
Expand Down
18 changes: 18 additions & 0 deletions client/src/css/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,26 @@ input:focus {
columns: 2;
}

/* Footer 'luminosityleds' column */
.about:hover {
text-decoration: underline;
display: inline-block;
}

.team:hover {
text-decoration: underline;
display: inline-block;
}

.whats-new:hover {
text-decoration: underline;
display: inline-block;
}

/* Hyperlinks/Anchors */
a {
text-decoration: none;
color: inherit;
}


0 comments on commit b4f912e

Please sign in to comment.