fix(n8n Form Node): Limit the max width for text area (#15508)

This commit is contained in:
RomanDavydchuk
2025-05-19 12:34:51 +03:00
committed by GitHub
parent 3985387204
commit 99361869a3

View File

@@ -164,6 +164,10 @@
padding-bottom: 6px;
}
form textarea {
max-width: 100%;
}
form .form-input {
border: 1px solid var(--color-input-border);
border-radius: var(--border-radius-input);