feat(breadcrumb): add style for nav link item

This commit is contained in:
RadoslavDimchev 2024-04-26 20:44:00 +03:00 committed by Emil Ivanichkov
parent ecf21eeafe
commit bbeedacc4d
1 changed files with 9 additions and 1 deletions

View File

@ -62,7 +62,15 @@ const Breadcrumb = () => {
}
return (
<NavLink key={match.pathname} to={match.pathname}>
<NavLink
key={match.pathname}
to={match.pathname}
style={{
textDecoration: 'none',
color: '#647084',
fontWeight: 'normal',
}}
>
{breadcrumb}
</NavLink>
)