Skip to content

Commit

Permalink
feat: add social media links in footer with new css classes
Browse files Browse the repository at this point in the history
  • Loading branch information
jonyw4 committed Jan 16, 2022
1 parent 7a03a2d commit f7aa73a
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
21 changes: 21 additions & 0 deletions webapp/src/components/global/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -143,4 +143,25 @@ label {

[type="radio"] {
margin-right: 1em;
}

.inline-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
column-gap: 10px;
align-items: center;
align-content: center;
flex-wrap: nowrap;
}

.small {
font-size: 80%;
line-height: normal;
}

.strong {
font-weight: 600;
}
16 changes: 16 additions & 0 deletions webapp/src/components/organisms/Footer/Footer.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@ export function Footer() {
return (
<footer>
<LanguageSelect />

<ul
className="inline-list small strong"
style={{ marginBottom: "0.5em" }}
>
<li>
<a href="https://www.linkedin.com/in/jonycelio/">LinkedIn</a>
</li>
<li>
<a href="https://www.instagram.com/jonycelio/">Instagram</a>
</li>
<li>
<a href="https://lyrax.systems/">Lyrax</a>
</li>
</ul>

<small>
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">
CC BY-NC-SA 4.0 2021
Expand Down

0 comments on commit f7aa73a

Please sign in to comment.