Skip to content

Commit

Permalink
fix(breadcrumb): fix separator size as expected in figma
Browse files Browse the repository at this point in the history
Signed-off-by: astagnol <[email protected]>
  • Loading branch information
astagnol authored and dpellier committed Nov 12, 2024
1 parent 5bb0165 commit 72cf7f3
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 @@ -2,7 +2,6 @@

:host(.ods-breadcrumb-item) {
display: inline-flex;
align-items: baseline;
font-size: 0.875rem;
font-weight: link.$ods-link-font-weight;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ $breadcrumb-spacing: 8px;
display: flex;
flex-wrap: wrap;
column-gap: $breadcrumb-spacing;
align-items: baseline;

::slotted(ods-breadcrumb-item:not(:last-child)) {
&::after {
padding-left: $breadcrumb-spacing;
color: var(--ods-color-text);
font-size: 1rem;
font-size: 0.875rem;
font-weight: 700;
content: '|';
}
Expand Down

0 comments on commit 72cf7f3

Please sign in to comment.