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

Commit b4f912e

Browse files
authored
LL-112 (#36)
2 parents fefffca + 44c3b10 commit b4f912e

2 files changed

Lines changed: 30 additions & 3 deletions

File tree

client/src/components/Footer.tsx

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,24 @@ export const Footer = () => {
99
{/* Column1 */}
1010
<div>
1111
<h4>luminosityleds</h4>
12-
<p>
13-
About | Team | <a href='https://github.com/pogi7/luminosityleds/releases/latest'>What's New?</a>
12+
<p className="about">
13+
About
14+
</p>
15+
<p className="team">
16+
Team
17+
</p>
18+
<p className="whats-new">
19+
<a href='https://github.com/pogi7/luminosityleds/releases/latest'>What's New?</a>
1420
</p>
1521
</div>
1622
{/* Column2 */}
1723
<div>
1824
<h4>Contact</h4>
1925
<p>
20-
<FontAwesomeIcon icon={faGithub} /> | <FontAwesomeIcon icon={faAtlassian} /> | <FontAwesomeIcon icon={faDiscord} /> | &copy; {new Date().getFullYear()} | All rights reserved
26+
<FontAwesomeIcon icon={faGithub} /> | <FontAwesomeIcon icon={faAtlassian} /> | <FontAwesomeIcon icon={faDiscord} />
27+
</p>
28+
<p>
29+
&copy; {new Date().getFullYear()} | All rights reserved
2130
</p>
2231
</div>
2332
</div>

client/src/css/App.css

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,8 +265,26 @@ input:focus {
265265
columns: 2;
266266
}
267267

268+
/* Footer 'luminosityleds' column */
269+
.about:hover {
270+
text-decoration: underline;
271+
display: inline-block;
272+
}
273+
274+
.team:hover {
275+
text-decoration: underline;
276+
display: inline-block;
277+
}
278+
279+
.whats-new:hover {
280+
text-decoration: underline;
281+
display: inline-block;
282+
}
283+
268284
/* Hyperlinks/Anchors */
269285
a {
270286
text-decoration: none;
271287
color: inherit;
272288
}
289+
290+

0 commit comments

Comments
 (0)