Skip to content

Commit

Permalink
Merge branch 'improvement/word-break' into q/1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bert-e committed Aug 1, 2024
2 parents 47bd7af + 14ac50c commit a22fbb2
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ const ConstrainedTextContainer = styled.div`
-webkit-line-clamp: ${props.lineClamp};
-webkit-box-orient: vertical;
overflow-wrap: break-word;
word-break: break-all;
`
: `overflow-wrap: break-word;
white-space: nowrap;`};
white-space: nowrap;
word-break: break-all;
`};
`;
const BlockTooltip = styled.div`
width: stretch;
Expand Down

0 comments on commit a22fbb2

Please sign in to comment.