Skip to content

Commit

Permalink
fix(breadcrumbs): amend / separator colours in light and dark mode (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Zidious authored Aug 8, 2023
1 parent ac0947b commit f2f134b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion packages/styles/breadcrumb.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
:root {
--breadcrumb-separator-color: var(--gray-60);
}

.cauldron--theme-dark {
--breadcrumb-separator-color: var(--accent-light);
}

.Breadcrumb ol {
display: block;
word-break: break-all;
Expand All @@ -8,8 +16,8 @@
}

.Breadcrumb__Separator {
color: var(--gray-40);
padding: 0 var(--space-half);
color: var(--breadcrumb-separator-color);
}

.Breadcrumb__Link {
Expand Down

0 comments on commit f2f134b

Please sign in to comment.