Skip to content

Commit

Permalink
refactor(app): update breadcrumbs to match designs
Browse files Browse the repository at this point in the history
  • Loading branch information
mjhuff committed Feb 16, 2024
1 parent a92fb77 commit 156c02e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/src/organisms/Breadcrumbs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
Icon,
ALIGN_CENTER,
ALIGN_FLEX_START,
BORDERS,
COLORS,
DIRECTION_ROW,
SPACING,
Expand Down Expand Up @@ -40,7 +41,7 @@ function CrumbName({ crumbName, isLastCrumb }: CrumbNameProps): JSX.Element {
return (
<Flex
alignItems={ALIGN_CENTER}
color={isLastCrumb ? COLORS.grey60 : COLORS.blue50}
color={isLastCrumb ? COLORS.grey50 : COLORS.blue50}
>
<Box
paddingRight={SPACING.spacing4}
Expand Down Expand Up @@ -121,6 +122,7 @@ function BreadcrumbsComponent(): JSX.Element | null {
<Flex
alignItems={ALIGN_FLEX_START}
backgroundColor={COLORS.white}
borderBottom={BORDERS.lineBorder}
css={TYPOGRAPHY.labelRegular}
flexDirection={DIRECTION_ROW}
padding={`${SPACING.spacing4} 0 ${SPACING.spacing4} ${SPACING.spacing8}`}
Expand Down

0 comments on commit 156c02e

Please sign in to comment.