Files
cdTestPlant3/cdTMP/src/style/warp.less

34 lines
736 B
Plaintext
Raw Normal View History

2024-05-31 18:29:29 +08:00
.tox-textarea-wrap {
height: 100% !important;
&>textarea.tox-textarea {
height: 100%;
}
}
2024-12-26 17:53:50 +08:00
2025-01-28 18:13:24 +08:00
// arco全局覆盖覆盖arco全局的圆角设置原来设置是0、2px、4px、6px
2024-12-26 17:53:50 +08:00
body {
--border-radius-none: 0;
--border-radius-small: 0px;
--border-radius-medium: 0px;
--border-radius-large: 0px;
}
2025-04-02 19:16:28 +08:00
// 覆盖arco表单行间距为3px原来为20px
.arco-form-item {
display: flex;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
margin-bottom: 5px;
}
// 覆盖card组件actions的margin-top原来为20px
.arco-card-actions {
2025-04-02 19:16:28 +08:00
margin-top: 0px !important;
}
// 覆盖card组件padding原来为16px
.arco-card-body {
2025-04-02 19:16:28 +08:00
padding: 8px !important;
}