You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
736 B
43 lines
736 B
// 命名空间 |
|
$namespace: v; |
|
// el命名空间 |
|
$elNamespace: el; |
|
|
|
.el-form--inline { |
|
display: flex; |
|
flex-flow: row wrap; |
|
gap: 20px; |
|
margin-bottom: 0; |
|
.el-form-item { |
|
margin-right: 0; |
|
margin-bottom: 0; |
|
.el-form-item__label { |
|
width: fit-content; |
|
} |
|
} |
|
} |
|
|
|
.el-table { |
|
border: 1px solid #ebeef5; |
|
border-bottom: none; |
|
--el-table-header-bg-color: #f5f7fa; |
|
.el-table__header { |
|
color: #909399; |
|
} |
|
} |
|
|
|
.el-pagination--large .btn-next, |
|
.el-pagination--large .btn-prev, |
|
.el-pagination--large .el-pager li { |
|
height: fit-content; |
|
line-height: normal; |
|
} |
|
|
|
.el-select-dropdown__item { |
|
display: flex; |
|
align-items: center; |
|
gap: 8px; |
|
line-height: normal; |
|
height: fit-content; |
|
padding: 10px; |
|
}
|
|
|