Merge pull request #3950 from dataease/pr@dev@style_de_tabs

style(tabs): tabs选项卡过多时,左右滚动的箭头消失
This commit is contained in:
xuwei-fit2cloud 2022-11-30 11:43:12 +08:00 committed by GitHub
commit b3da2200d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -708,21 +708,27 @@ export default {
}
::v-deep .el-tabs__nav {
width: 100%;
display: flex;
}
::v-deep .el-tabs__nav-prev {
line-height: 25px;
}
::v-deep .el-tabs__nav-next {
line-height: 25px;
}
.tab-head-left ::v-deep .el-tabs__nav {
width: 100%;
display: flex;
text-align: left;
}
.tab-head-right ::v-deep .el-tabs__nav {
width: 100%;
display: flex;
text-align: right;
}
.tab-head-center ::v-deep .el-tabs__nav {
width: 100%;
display: flex;
text-align: center;
}