Skip to content

Commit

Permalink
styles: change breadcrumbs color
Browse files Browse the repository at this point in the history
  • Loading branch information
DiogoSoaress committed Dec 16, 2024
1 parent 7ccdc35 commit 4121cda
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/components/Blog/BreadcrumbsNav/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ type BreadcrumbsType = {

const createBreadcrumb = (key: string, text: ReactNode, linkProps: string | UrlObject) => (
<Link key={key} href={linkProps}>
<Typography variant={TYPOGRAPHY_VARIANT}>{text}</Typography>
<Typography variant={TYPOGRAPHY_VARIANT} color="primary.light">
{text}
</Typography>
</Link>
)

Expand Down
3 changes: 2 additions & 1 deletion src/components/Blog/BreadcrumbsNav/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}

.breadcrumbs a:hover {
color: var(--mui-palette-text-primary);
color: var(--mui-palette-primary-light);
text-decoration: underline;
}

Expand All @@ -22,4 +22,5 @@
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
color: var(--mui-palette-primary-light);
}

0 comments on commit 4121cda

Please sign in to comment.