1
0
mirror of synced 2026-04-04 07:08:34 +08:00

feat(editor): 支持代码块维度查看与组件的绑定关系,并支持从代码块列表解除绑定

This commit is contained in:
parisma
2022-09-21 12:53:02 +08:00
committed by jia000
parent 5de3eeda71
commit bfaa8317e3
9 changed files with 278 additions and 48 deletions

View File

@@ -1,5 +1,8 @@
.m-editor-code-block-list {
margin-top: 5px;
.el-tree-node__content {
height: auto;
}
.code-header-wrapper {
display: flex;
align-items: center;
@@ -47,6 +50,25 @@
margin-right: 60px;
}
}
.code-comp-map-wrapper {
display: flex;
align-items: center;
flex-wrap: wrap;
margin-left: 20px;
margin-bottom: 5px;
.arrow-left {
transform: rotate(-45deg);
width: 20px;
height: 20px;
}
.code-comp {
margin-left: 5px;
padding: 5px;
.comp-delete-icon {
margin-left: 3px;
}
}
}
}
}