jdcProject_front/src/assets/styles/element-plus.scss

21 lines
363 B
SCSS
Raw Normal View History

2024-11-19 20:14:23 +08:00
// 自定义 Element Plus 样式
2022-10-28 14:27:35 +08:00
2024-03-28 21:34:24 +08:00
// 卡片
.el-card {
background-color: var(--el-bg-color);
2022-10-28 14:27:35 +08:00
}
// 分页
.el-pagination {
// 参考 Bootstrap 的响应式设计 WIDTH = 768
@media screen and (max-width: 768px) {
.el-pagination__total,
.el-pagination__sizes,
.el-pagination__jump,
.btn-prev,
.btn-next {
2024-11-21 11:03:40 +08:00
display: none;
}
}
}