diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro index cffc507..09cc00b 100644 --- a/src/components/Navbar.astro +++ b/src/components/Navbar.astro @@ -12,7 +12,7 @@ const isAboutActive = isAbout function getNavItemClass(isActive: boolean) { return isActive ? 'highlight-static c-primary font-bold after:bottom-0.5em' - : 'highlight-hover transition-colors after:bottom-0.5em hover:(c-primary font-bold)' + : 'highlight-hover transition-colors transition-font-weight after:bottom-0.5em hover:(c-primary font-bold)' } const navItems = [ diff --git a/src/components/Widgets/GoBack.astro b/src/components/Widgets/GoBack.astro index 0699ac8..2136edc 100644 --- a/src/components/Widgets/GoBack.astro +++ b/src/components/Widgets/GoBack.astro @@ -5,7 +5,7 @@ import GoBackIcon from '@/assets/icons/go-back.svg';