Skip to content

Commit

Permalink
update start and end slot for breadcrumb, text-field and tree-item
Browse files Browse the repository at this point in the history
  • Loading branch information
khamudom committed Oct 29, 2020
1 parent 65d2766 commit 50fba0b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,10 @@ export const BreadcrumbItemStyles = css`
}
.start,
.end,
.end {
display: flex;
}
::slotted(svg) {
${
/* Glyph size and margin-left is temporary -
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,16 @@ export const TextFieldStyles = css`
.start,
.end {
margin: auto;
fill: currentcolor;
}
::slotted(svg) {
${
/* Glyph size and margin-left is temporary -
replace when adaptive typography is figured out */ ""
} width: 16px;
height: 16px;
margin: auto;
fill: currentcolor;
}
.start {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,14 +167,19 @@ export const TreeItemStyles = css`
pointer-events: none;
fill: currentcolor;
}
.start,
.end {
display: flex;
fill: currentcolor;
}
::slotted(svg) {
${
/* Glyph size is temporary -
replace when glyph-size var is added */ ""
} width: 16px;
height: 16px;
fill: currentcolor;
}
.start {
Expand Down

0 comments on commit 50fba0b

Please sign in to comment.