Fixed incorrect sizing of nav icons
This commit is contained in:
parent
1a5ea2f6c0
commit
180cdd4edc
1 changed files with 2 additions and 2 deletions
|
|
@ -7,10 +7,10 @@ type NavItem = {
|
||||||
isExternal?: boolean
|
isExternal?: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
const navIconsClassName = 'w-6 h-6'
|
const navIconsClassName = 'w-6 h-6 lg:w-4 lg:h-4'
|
||||||
|
|
||||||
export const navItems: NavItem[] = [
|
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: '/about', label: 'About', icon: <Info className={navIconsClassName} /> },
|
||||||
{ href: '/categories', label: 'Categories', icon: <Folder className={navIconsClassName} /> },
|
{ href: '/categories', label: 'Categories', icon: <Folder className={navIconsClassName} /> },
|
||||||
{ href: '/tags', label: 'Tags', icon: <Tags className={navIconsClassName} /> },
|
{ href: '/tags', label: 'Tags', icon: <Tags className={navIconsClassName} /> },
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue