1
0
Fork 0
mirror of synced 2024-08-19 03:51:29 +12:00

Fix issue with extremely long select values!

This commit is contained in:
Andrew Kingston 2022-12-06 15:13:12 +00:00
parent bc115f8296
commit b03bf753a0
2 changed files with 10 additions and 0 deletions

View file

@ -205,7 +205,10 @@
width: 100%;
}
.spectrum-Popover.auto-width :global(.spectrum-Menu-itemLabel) {
max-width: 400px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.spectrum-Picker {
width: 100%;

View file

@ -61,6 +61,13 @@
align-items: center;
gap: var(--spacing-l);
}
.header-left {
flex: 1 1 auto;
width: 0;
}
.header-left :global(> *) {
max-width: 100%;
}
.header-left :global(.spectrum-Picker) {
font-weight: 600;
color: var(--spectrum-global-color-gray-900);