Fixed incorrect sizing of nav icons

This commit is contained in:
HangerThem 2026-08-04 09:11:35 +02:00
parent 1a5ea2f6c0
commit 180cdd4edc

View file

@ -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: <Home /> },
{ href: '/', label: 'Home', icon: <Home className={navIconsClassName} /> },
{ href: '/about', label: 'About', icon: <Info className={navIconsClassName} /> },
{ href: '/categories', label: 'Categories', icon: <Folder className={navIconsClassName} /> },
{ href: '/tags', label: 'Tags', icon: <Tags className={navIconsClassName} /> },