From 3fa78ad2bbb87a5e40bcfdb64738ce7e7d6da6f4 Mon Sep 17 00:00:00 2001 From: Beau Findlay Date: Wed, 24 Apr 2024 22:04:28 +0100 Subject: [PATCH] Update font styles --- src/Client/src/components/Footer.tsx | 2 +- src/Client/src/components/NavLink.tsx | 4 ++-- src/Client/src/components/SocialIcons.tsx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Client/src/components/Footer.tsx b/src/Client/src/components/Footer.tsx index a56079f..821707d 100644 --- a/src/Client/src/components/Footer.tsx +++ b/src/Client/src/components/Footer.tsx @@ -8,7 +8,7 @@ export default function Footer() {
-

+

© {currentYear} Beau Findlay. All rights reserved.

diff --git a/src/Client/src/components/NavLink.tsx b/src/Client/src/components/NavLink.tsx index 16b4154..ae04782 100644 --- a/src/Client/src/components/NavLink.tsx +++ b/src/Client/src/components/NavLink.tsx @@ -7,14 +7,14 @@ interface Props { } export default function NavLink({ children, to, className }: Props) { - const defaultStyles = "text-sm font-semibold leading-6"; + const defaultStyles = "text-base font-semibold leading-6 hover:text-gray-300"; const styles = className ? className : defaultStyles; return ( - isActive ? `${styles} underline underline-offset-2` : styles + isActive ? `${styles} underline underline-offset-4` : styles } > {children} diff --git a/src/Client/src/components/SocialIcons.tsx b/src/Client/src/components/SocialIcons.tsx index c816a76..d916b09 100644 --- a/src/Client/src/components/SocialIcons.tsx +++ b/src/Client/src/components/SocialIcons.tsx @@ -29,7 +29,7 @@ export default function SocialIcons({ size = 20 }: Props) { {socialIcon.name} {socialIcon.icon}