Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/components/navigation/breadcrumbs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Link from "./link";
function BreadcrumbItem({ className, href, text }) {
const breadcrumbItemClass = useMemo(() => {
return gwMerge(
"gw-text-gray-300 hover:gw-text-gray-500 last:gw-text-gray-900",
"gw-text-gray-500 hover:gw-text-gray-700 last:gw-text-gray-900",
className,
);
}, [className]);
Expand All @@ -17,7 +17,7 @@ function BreadcrumbItem({ className, href, text }) {
<VscChevronRight
size={18}
aria-hidden="true"
color="rgb(156 163 175)"
color="gw-text-gray-500"
/>
<Link
href={href}
Expand All @@ -43,7 +43,7 @@ function Breadcrumbs({ className, children, baseUrl }) {
<div>
<Link
href={baseUrl}
className="gw-text-gray-300 gw-hover:gw-text-gray-500"
className="gw-text-gray-500 hover:gw-text-gray-700"
>
<MdHome size={22} />
<span className="gw-sr-only">Home</span>
Expand Down
Loading