Skip to content

Commit

Permalink
Fixes table pagination layout on small screens (#524)
Browse files Browse the repository at this point in the history
the tr was overflowing out of the footer on really small horizontal screen sizes.  This fixes that.
  • Loading branch information
jaredkirkley committed Apr 1, 2022
1 parent 110d1f0 commit 746740e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/material-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ export default class MaterialTable extends React.Component {
return (
<Table>
<TableFooter style={{ display: 'grid' }}>
<TableRow>
<TableRow style={{ display: 'grid' }}>
<props.components.Pagination
classes={{
root: props.classes.paginationRoot,
Expand Down

0 comments on commit 746740e

Please sign in to comment.