增加 element 样式补丁

1.修复 IE 游览器下 el-tabs 宽度不能撑满
2.修复 Chrome 游览器下 el-tabs 头部线格错位
This commit is contained in:
思维空间 2020-04-23 09:50:26 +08:00
parent 7f03fbb2ab
commit e2c4a40119
1 changed files with 13 additions and 1 deletions

View File

@ -16,4 +16,16 @@
.el-tabs__item:focus.is-active.is-focus:not(:active) {
box-shadow: none !important;
}
}
// 修复IE宽度不能撑满
.el-table__body,
.el-table__header {
width: 100% !important;
}
// Chrome下表格头部错位修复
.el-table th.gutter,
.el-table colgroup.gutter {
display: table-cell !important;
}