fix: 左侧样式间距调整

This commit is contained in:
zhangjinlong 2020-10-08 13:03:17 +08:00
parent 15dd6916cb
commit 4fe8fcb9da
3 changed files with 13 additions and 3 deletions

View File

@ -68,7 +68,8 @@ body {
.ant-tabs-left.editorTabclass .ant-tabs-tabpane{
display: flex;
flex-wrap: wrap;
padding-left: 12px!important;
padding-left: 10px!important;
padding-right: 10px!important;
}
.ant-form-item-label > label {

View File

@ -45,7 +45,7 @@ const TargetBox = memo((props: TargetBoxProps) => {
);
return (
<>
<div style={{ width: '50%', padding: '10px' }}>
<div className={styles.listWrap}>
<div className={styles.module} style={{ ...containerStyle }} ref={drag}>
<div
style={{

View File

@ -47,9 +47,18 @@
.searchBar {
margin-bottom: 20px;
}
&Wrap {
width: 50%;
&:nth-child(even) {
padding-left: 0px;
}
&:nth-child(odd) {
padding-left: 8px;
}
}
.module {
position: relative;
margin-bottom: 12px;
margin-bottom: 10px;
width: 100%;
overflow: hidden;
user-select: none;