| 1234567891011121314151617 |
- @import './index.scss';
- /* 页面宽度小于576px
- ------------------------------- */
- @media screen and (max-width: $xs) {
- .el-pager,
- .el-pagination__jump {
- display: none !important;
- }
- }
- // 默认居中对齐
- .el-pagination {
- text-align: center !important;
- display: flex;
- justify-content: flex-end;
- }
|