From 16e1f9779c5f7f114adfe398334c3be4e6a7354b Mon Sep 17 00:00:00 2001 From: millmason Date: Sat, 11 Jan 2025 14:15:38 -0500 Subject: [PATCH] [977] Expand hover styles on buttons to fill mobile menu --- src/components/IconLink.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/IconLink.tsx b/src/components/IconLink.tsx index 0ff8c96f..32ff8c33 100644 --- a/src/components/IconLink.tsx +++ b/src/components/IconLink.tsx @@ -32,8 +32,8 @@ function IconLink({ icon, text, href }: IconLinkProps) { startContent={
{icon}
} className={ pathname === href - ? 'active-state-nav gap-0' - : 'iconLink bg-color-none gap-0' + ? 'active-state-nav gap-0 w-full justify-start' + : 'iconLink bg-color-none gap-0 w-full justify-start' } // className="flex text-gray-900 items-center active:bg-[#E9FFE5] active:text-green-700 focus:text-green-700 focus:bg-[#E9FFE5] hover:gray-100 bg-color-none hover:bg-gray-10" >