diff --git a/apps/client/src/common/components/select/Select.module.scss b/apps/client/src/common/components/select/Select.module.scss index 9f261e89a..60aa25e06 100644 --- a/apps/client/src/common/components/select/Select.module.scss +++ b/apps/client/src/common/components/select/Select.module.scss @@ -15,6 +15,14 @@ padding-inline: 0.5rem; white-space: nowrap; +} + +.valueText { + flex: 1; + min-width: 0; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; &:hover:not([data-disabled]) { background-color: $gray-1100; diff --git a/apps/client/src/common/components/select/Select.tsx b/apps/client/src/common/components/select/Select.tsx index 696d06ea0..766f47e25 100644 --- a/apps/client/src/common/components/select/Select.tsx +++ b/apps/client/src/common/components/select/Select.tsx @@ -22,7 +22,9 @@ export default function Select({ options, fluid, size = 'medium', ...selectRo return ( - + + + diff --git a/apps/client/src/features/rundown/entry-editor/EventEditorEmpty.module.scss b/apps/client/src/features/rundown/entry-editor/EventEditorEmpty.module.scss index 47ef5fb36..382b36d8c 100644 --- a/apps/client/src/features/rundown/entry-editor/EventEditorEmpty.module.scss +++ b/apps/client/src/features/rundown/entry-editor/EventEditorEmpty.module.scss @@ -64,7 +64,7 @@ display: inline-flex; align-items: center; flex-wrap: nowrap; - gap: 0.25rem 0; + gap: 0.25rem 0.125rem; } .separator {