From 180cdd4edc2fa3b8bc26e395ead4f9d6a18c3299 Mon Sep 17 00:00:00 2001 From: HangerThem Date: Tue, 4 Aug 2026 09:11:35 +0200 Subject: [PATCH] Fixed incorrect sizing of nav icons --- components/layout/navItems.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/layout/navItems.tsx b/components/layout/navItems.tsx index aa99c81..e210dd1 100644 --- a/components/layout/navItems.tsx +++ b/components/layout/navItems.tsx @@ -7,10 +7,10 @@ type NavItem = { isExternal?: boolean } -const navIconsClassName = 'w-6 h-6' +const navIconsClassName = 'w-6 h-6 lg:w-4 lg:h-4' export const navItems: NavItem[] = [ - { href: '/', label: 'Home', icon: }, + { href: '/', label: 'Home', icon: }, { href: '/about', label: 'About', icon: }, { href: '/categories', label: 'Categories', icon: }, { href: '/tags', label: 'Tags', icon: },