table: add bottom padding for consistency

This commit is contained in:
Sidney Alcantara
2021-09-09 18:38:52 +10:00
parent a520b8a67a
commit b41b1534ef

View File

@@ -17,7 +17,7 @@ export const useStyles = makeStyles((theme) =>
"& > .rdg": {
width: `calc(100% - ${DRAWER_COLLAPSED_WIDTH}px)`,
flex: 1,
paddingBottom: "env(safe-area-inset-bottom)",
paddingBottom: `max(env(safe-area-inset-bottom), ${theme.spacing(2)})`,
},
[theme.breakpoints.down("sm")]: { width: "100%" },