(react) max width for multi select pills

In order to prevent a pill with a long text to stack below the actions
div we decided to introduce the concept of max-width for pills.
This commit is contained in:
Nathan Vasse
2023-06-15 17:49:49 +02:00
committed by NathanVss
parent 29b58ed1a6
commit 34d2fe0af3
6 changed files with 14 additions and 4 deletions

View File

@@ -218,6 +218,14 @@
gap: 0.25rem;
margin-right: 0.25rem;
margin-bottom: 0.25rem;
max-width: var(--c--components--forms-select--multi-pill-max-width);
> span {
min-width: 0;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
&__clear {
width: auto;