Tooltip width hard to change #978
Labels
P3 Triaged
Issue has been reviewed as part of legacy backlog grooming (project P3).
Triaged: new architecture
Triaged, to be addressed in new architecture of the design system
Issue
There are instances where we would like to limit the
max-width
ofTooltip
without setting a fixed width for it (e.g. the generated content is dynamic and can be long). Unfortunately, something simple likemax-width: 20rem; white-space: pre-wrap;
won't work, as, in the case the width of theTooltip
is 0, the text would just appear one word per line (as seen in the attached screenshot).Possible fix
We could utilize something similar to
breakLines
frommaas-ui
and break long text into lines of specific length, which would allow us to indirectly set-upmax-width
ofTooltip
.Screenshot
The text was updated successfully, but these errors were encountered: