Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/images/github.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/twitter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ const Footer = () => {
<Link href="/mentions-legales" legacyBehavior>
<a>Mentions légales</a>
</Link>
<a href="https://github.com/ChtiJS/" title="Voir le compte GitHub de ChtiJS"></a>
<a href="http://twitter.com/ChtiJS"><img src="/images/twitter.png" alt="ChtiJS sur Twitter" /></a>
<a href="https://github.com/ChtiJS/"><img src="/images/github.png" alt="ChtiJS sur GitHub" /></a>
</p>

</footer>
<style jsx>{`
footer {
Expand All @@ -33,6 +37,12 @@ const Footer = () => {
a:hover {
color: var(--light);
}
img{
width:40px;
float:right;
margin-right: 10px;
margin-top: 6px;
}
@media screen and (max-width: ${CSS_BREAKPOINT_END_S}) {
footer {
grid-column-start: 1;
Expand Down
4 changes: 2 additions & 2 deletions src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
/* Fonts */
--writingFont: 'Open sans', 'Helvetica', 'Arial', sans-serif;
--contentFont: 'Open sans', 'Helvetica', 'Arial', sans-serif;
--headingFont: 'Georgia', 'Times', serif;
--headingFont: 'Veranda', 'Times', sans-serif;

/* Font sizes */
--smallFontSize: calc(5 * var(--vGrid));
Expand Down Expand Up @@ -74,4 +74,4 @@ body,
box-sizing: border-box;
margin: 0;
padding: 0;
}
}