Merge pull request #281 from dataease/pr@dev@fix_视图样式

fix: 视图样式
This commit is contained in:
XiaJunjie2020 2021-07-22 12:27:47 +08:00 committed by GitHub
commit 03c3695f6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -250,7 +250,7 @@
group="drag"
animation="300"
:move="onMove"
style="padding:2px 0 0 0;width:100%;min-height: 32px;border-radius: 4px;border: 1px solid #DCDFE6;overflow-x: auto;display: flex;align-items: center;background-color: white;"
class="drag-block-style"
@add="addXaxis"
>
<transition-group class="draggable-group">
@ -277,7 +277,7 @@
group="drag"
animation="300"
:move="onMove"
style="padding:2px 0 0 0;width:100%;min-height: 32px;border-radius: 4px;border: 1px solid #DCDFE6;overflow-x: auto;display: flex;align-items: center;background-color: white;"
class="drag-block-style"
@add="addYaxis"
>
<transition-group class="draggable-group">
@ -297,7 +297,7 @@
group="drag"
animation="300"
:move="onMove"
style="padding:2px 0 0 0;width:100%;min-height: 32px;border-radius: 4px;border: 1px solid #DCDFE6;overflow-x: auto;display: flex;align-items: center;background-color: white;"
class="drag-block-style"
@add="addStack"
>
<transition-group class="draggable-group">
@ -1527,4 +1527,15 @@ export default {
font-weight: normal !important;
}
}
.drag-block-style{
padding:2px 0 0 0;
width:100%;
min-height: 32px;
border-radius: 4px;
border: 1px solid #DCDFE6;
overflow-x: hidden;
display: flex;
align-items: center;
background-color: white;
}
</style>