Skip to content

Commit

Permalink
fix(Label): missing text overflow (#1206)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladeeg authored Jan 24, 2024
1 parent ac24b8e commit 60357cd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/components/Label/Label.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,19 @@ $hover-opacity: 0.7;
font-size: var(--g-text-body-1-font-size);
text-align: center;
white-space: nowrap;
overflow: hidden;
}

&__content,
&__key {
text-overflow: ellipsis;
overflow: hidden;
}

&__value {
display: flex;
opacity: $hover-opacity;
overflow: hidden;
}

&__separator {
Expand Down

0 comments on commit 60357cd

Please sign in to comment.