Hide pagination options when screen is small

This commit is contained in:
afc163 2017-09-08 15:20:31 +08:00
parent 13a11d6fc3
commit f7cc779c5d

View File

@ -327,3 +327,9 @@
}
}
}
@media only screen and (max-width: @screen-sm) {
.@{pagination-prefix-cls}-options {
display: none;
}
}