style(manuscript): 禁止文本域调整大小

- 在编辑表单的文本域中禁用用户调整大小功能
- 通过 SCSS 样式覆盖实现 `resize: none`- 作用于 `ant-input` 组件内部样式
This commit is contained in:
rd
2025-09-24 17:35:08 +08:00
parent 0941c7ec0e
commit efefe1cfaa

View File

@ -33,4 +33,8 @@
.textarea-box {
height: 140px;
max-height: 298px;
:deep(.ant-input) {
resize: none;
}
}