style(flow-chart): 流程图数据弹窗样式优化 (#68)

This commit is contained in:
一万 2021-10-22 21:21:42 +08:00 committed by GitHub
parent eb8d3ca96e
commit 8b8cd52f64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,7 +77,9 @@ onMounted(() => {
v-model="dataVisible"
width="50%"
>
<DataDialog :graphData="graphData"></DataDialog>
<el-scrollbar>
<DataDialog :graphData="graphData"></DataDialog>
</el-scrollbar>
</el-dialog>
</div>
</template>
@ -127,7 +129,13 @@ onMounted(() => {
:deep(.flow-dialog) {
transform: none;
left: 0;
top: 5vh;
position: relative;
margin: 0 auto;
}
:deep(.flow-dialog) .el-dialog__body {
height: 85vh;
overflow: auto;
}
</style>