From b4f6c605c26eca7dc048d20563e45fef9ee4ac8e Mon Sep 17 00:00:00 2001 From: midblep Date: Tue, 22 Jun 2021 20:01:41 +0200 Subject: [PATCH] wow --- components/footer.js | 4 +++- components/socials.js | 13 +++++++++---- styles/components/Header.module.css | 2 +- styles/components/Socials.module.css | 8 ++++++++ 4 files changed, 21 insertions(+), 6 deletions(-) diff --git a/components/footer.js b/components/footer.js index 8a7b319..74ef3bf 100644 --- a/components/footer.js +++ b/components/footer.js @@ -1,10 +1,12 @@ import styles from '../styles/components/Footer.module.css' +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' +import { faHeart } from '@fortawesome/free-solid-svg-icons' const Footer = () => (
-

Made with by Midblep

+

Made with by Midblep

diff --git a/components/socials.js b/components/socials.js index 27d60c1..583ea51 100644 --- a/components/socials.js +++ b/components/socials.js @@ -1,11 +1,16 @@ import styles from '../styles/components/Socials.module.css' +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' +import { faTwitter } from '@fortawesome/free-brands-svg-icons' +import { faTwitch } from '@fortawesome/free-brands-svg-icons' +import { faTrello } from '@fortawesome/free-brands-svg-icons' +import { faMugHot } from '@fortawesome/free-solid-svg-icons' const Socials = () => (
- Twitter - Twitch - Trello - Ko-fi + Twitter + Twitch + Trello + Ko-fi
) diff --git a/styles/components/Header.module.css b/styles/components/Header.module.css index 623717b..5d9a022 100644 --- a/styles/components/Header.module.css +++ b/styles/components/Header.module.css @@ -87,4 +87,4 @@ .menu { padding: 0.5em; } - } \ No newline at end of file +} \ No newline at end of file diff --git a/styles/components/Socials.module.css b/styles/components/Socials.module.css index 879c69a..b73e54a 100644 --- a/styles/components/Socials.module.css +++ b/styles/components/Socials.module.css @@ -17,9 +17,17 @@ color: white; transition-duration: 0.1s; font-family: 'Dela Gothic One', cursive; + width: 300px; } .buttons > a:hover { transform: scale(0.95); transition-duration: 0.1s; +} + +/* mobile */ +@media(max-aspect-ratio: 4/3) { + .buttons > a { + width: 100%; + } } \ No newline at end of file