From 110fad06abf240e017e27b9438f18ada33cf7597 Mon Sep 17 00:00:00 2001 From: radishzzz Date: Thu, 15 May 2025 22:56:14 +0100 Subject: [PATCH] fix: highlight position issue on ios for navbar and footer --- src/components/Footer.astro | 2 +- src/components/Navbar.astro | 2 +- src/styles/global.css | 9 +++++++++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 3696bae..e55524d 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -22,7 +22,7 @@ const links = socialLinks.map((link) => { return link }) -const footerLinkClass = 'highlight-hover transition-colors after:bottom-0 hover:c-primary' +const footerLinkClass = 'highlight-hover footer-highlight-position-fix transition-colors after:bottom-0 hover:c-primary' ---