style(manuscript): 禁止文本域调整大小
- 在编辑表单的文本域中禁用用户调整大小功能 - 通过 SCSS 样式覆盖实现 `resize: none`- 作用于 `ant-input` 组件内部样式
This commit is contained in:
@ -33,4 +33,8 @@
|
||||
.textarea-box {
|
||||
height: 140px;
|
||||
max-height: 298px;
|
||||
|
||||
:deep(.ant-input) {
|
||||
resize: none;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user