Skip to content

Commit

Permalink
style(uikit): Breadcrump default color (#132)
Browse files Browse the repository at this point in the history
* style(uikit): Breadcrump default color

* test: Update snapshot
  • Loading branch information
hachiojidev authored Jun 3, 2021
1 parent 6360e33 commit 5ecdc3f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ it("renders correctly", () => {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: #BDC2C4;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { BreadcrumbsProps } from "./types";

const Separator = styled.div`
align-items: center;
color: currentColor;
color: ${({ theme }) => theme.colors.textDisabled};
display: flex;
justify-content: center;
padding-left: 4px;
Expand All @@ -26,7 +26,6 @@ const Separator = styled.div`

const StyledBreadcrumbs = styled.ul`
align-items: center;
color: ${({ theme }) => theme.colors.textDisabled};
display: flex;
flex-wrap: wrap;
list-style-type: none;
Expand Down

0 comments on commit 5ecdc3f

Please sign in to comment.