diff --git a/packages/grid/_modules_/grid/components/Pagination.tsx b/packages/grid/_modules_/grid/components/Pagination.tsx index 00c43f9b271cf..3150b88f26f04 100644 --- a/packages/grid/_modules_/grid/components/Pagination.tsx +++ b/packages/grid/_modules_/grid/components/Pagination.tsx @@ -9,6 +9,12 @@ import { isMuiV5 } from '../utils'; // Used to hide the Rows per page selector on small devices const useStyles = makeStyles((theme: Theme) => ({ + selectLabel: { + display: 'none', + [theme.breakpoints.up('md')]: { + display: 'block', + }, + }, caption: { // input label '&[id]': { @@ -64,7 +70,10 @@ export function Pagination() { return ( // @ts-ignore TODO remove once upgraded v4 support is dropped