fix(editor): Fit long words for draggable fields (#17063)

This commit is contained in:
Dana
2025-07-07 17:43:22 +02:00
committed by GitHub
parent c3cc8de634
commit b73357369f

View File

@@ -244,7 +244,11 @@ function optionSelected(action: string) {
min-height: 24px;
> span {
white-space: nowrap;
word-wrap: break-word;
overflow-wrap: break-word;
word-break: break-word;
white-space: normal;
max-width: 100%;
}
}