From 8e26ecaa6d221c4e9a00a93d3ef47eb3c52e3927 Mon Sep 17 00:00:00 2001 From: Michael Novotny Date: Sun, 30 Jul 2023 23:03:08 -0500 Subject: [PATCH] Fixes mobile tap targets --- 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() {