Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

220068 - Fix breadcrumbs color #1084

Merged
merged 3 commits into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion components/Layout/Breadcrumb.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export function Breadcrumb({ locale, items = [] }: BreadcrumbProps) {
</Link>

{index < items.length - 1 && (
<span className="ml-2 mr-1 inline-block align-middle text-multi-blue-blue70b icoxxxn-cheveron-right">
<span className="ml-1 mr-1 inline-block align-middle text-multi-blue-blue70b">
{/* eslint-disable-next-line @next/next/no-img-element */}
<img
id={`chevron-${index}`}
Expand Down
2 changes: 1 addition & 1 deletion styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* {
@apply focus:outline-none;
@apply focus-visible:ring-4;
@apply focus-visible:ring-sky-500;
@apply focus-visible:ring-[#009EE1];
}

.skip-main {
Expand Down
Loading