Skip to content

Commit

Permalink
fix(chip): text overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonwoodland authored and stavares843 committed Jun 17, 2022
1 parent b0ead5b commit a222ad3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion components/interactables/Chip/Chip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,17 +56,25 @@ export default Vue.extend({
.fa-times {
cursor: pointer;
}
display: inline-flex;
flex-shrink: 0;
flex-direction: row;
align-items: center;
padding: @xlight-spacing;
border-radius: @corner-rounding-xxlarge;
color: white;
line-height: 0;
max-width: 100%;
.circle,
.delete-icon {
flex-shrink: 0;
}
.text {
margin: 0 0.125rem 0 @xlight-spacing;
&:extend(.ellipsis);
align-self: stretch;
}
&.size-small {
Expand Down

0 comments on commit a222ad3

Please sign in to comment.