Skip to content

Commit

Permalink
Same with breadcrumbs
Browse files Browse the repository at this point in the history
  • Loading branch information
damianstasik committed Sep 19, 2023
1 parent 66a119b commit e2a100b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/theme/DocBreadcrumbs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ function BreadcrumbsItemLink({
);
}
return href ? (
<Link href={href} itemProp="item">
<Link
href={href}
className="text-gray-900 dark:text-gray-50 hover:text-brand-700 dark:hover:text-brand-500"
itemProp="item"
>
<span itemProp="name">{children}</span>
</Link>
) : (
Expand Down

0 comments on commit e2a100b

Please sign in to comment.