style: 样式优化

fix-0609-xwk
向文可 3 years ago
parent 769080e332
commit 8d1722ef1a

@ -143,7 +143,20 @@
<style lang="less" scoped> <style lang="less" scoped>
.upload-box { .upload-box {
:deep(.el-upload-list__item-name) { :deep(.el-upload-list__item-name) {
padding-right: 20px; max-width: calc(100% - 40px);
overflow: auto;
&::-webkit-scrollbar {
width: 4px;
height: 4px;
}
&::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: #999;
}
&::-webkit-scrollbar-track {
border-radius: 10px;
background-color: #ccc;
}
} }
} }
</style> </style>

@ -195,6 +195,7 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow: hidden; overflow: hidden;
width: 100%;
.step-content { .step-content {
flex: 1; flex: 1;
overflow: auto; overflow: auto;
@ -204,6 +205,9 @@
width: 50%; width: 50%;
} }
} }
.upload-box {
width: 100%;
}
} }
.step-footer { .step-footer {
margin: 10px 0; margin: 10px 0;

Loading…
Cancel
Save