pagination.scss 311 B

1234567891011121314151617
  1. @import './index.scss';
  2. /* 页面宽度小于576px
  3. ------------------------------- */
  4. @media screen and (max-width: $xs) {
  5. .el-pager,
  6. .el-pagination__jump {
  7. display: none !important;
  8. }
  9. }
  10. // 默认居中对齐
  11. .el-pagination {
  12. text-align: center !important;
  13. display: flex;
  14. justify-content: flex-end;
  15. }