fix(KB-254): fix textarea height in file editor

- Add flex: 1 to allow textarea to fill available space in flex container
- Add min-height: 0 to prevent flexbox min-height constraints from limiting growth
This commit is contained in:
gsxdsm
2026-03-30 21:39:06 -07:00
parent d070d13414
commit 6a62c3cac6

View File

@@ -6273,6 +6273,8 @@ html .column.drag-over * {
/* Textarea-based file editor */
.file-editor-textarea {
flex: 1;
min-height: 0;
width: 100%;
min-width: 100%;
height: 100%;