2023-08-06 13:16:24 +08:00

17 lines
487 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@import './var.css';
@import 'element-plus/theme-chalk/dark/css-vars.css';
// 解决抽屉弹出时body宽度变化的问题
.el-popup-parent--hidden {
width: 100% !important;
}
// 解决element-plus 中的日期组件宽度无法设置100%的问题
.el-date-editor .el-input__wrapper {
width: 100% !important;
}
// 解决element-plus 中的日期组件宽度无法设置100%的问题
.el-table__body tr.current-row>td.el-table__cell {
background-color: #a0cfff !important;
}