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