From 455a7327f34cd87a571db8ead8b5ae761771d9ca Mon Sep 17 00:00:00 2001 From: Michael Novotny Date: Mon, 31 Jul 2023 09:09:56 -0500 Subject: [PATCH] Fixes mobile tap targets (#1129) Co-authored-by: Lee Robinson --- components/layout/footer-menu.tsx | 4 ++-- components/layout/footer.tsx | 4 ++-- components/layout/navbar/mobile-menu.tsx | 27 +++++++++++++++--------- 3 files changed, 21 insertions(+), 14 deletions(-) diff --git a/components/layout/footer-menu.tsx b/components/layout/footer-menu.tsx index 696f61fc0..4f6387edd 100644 --- a/components/layout/footer-menu.tsx +++ b/components/layout/footer-menu.tsx @@ -15,11 +15,11 @@ const FooterMenuItem = ({ item }: { item: Menu }) => { }, [pathname, item.path]); return ( -
  • +
  • - + {SITE_NAME} @@ -40,7 +40,7 @@ export default async function Footer() {