diff options
Diffstat (limited to 'src/pages')
-rw-r--r-- | src/pages/Page.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/Page.tsx b/src/pages/Page.tsx index 91b7214..c0ba3d2 100644 --- a/src/pages/Page.tsx +++ b/src/pages/Page.tsx @@ -13,10 +13,10 @@ import { useNavigate } from '../hooks/useNavigate'; const useStyles = makeStyles(theme => ({ root: { [theme.breakpoints.down('sm')]: { - margin: theme.spacing(2) + margin: theme.spacing(2, 0, 12, 0) }, [theme.breakpoints.up('md')]: { - margin: theme.spacing(15, 5, 5, 8) + margin: theme.spacing(15, 5, 8, 5) } } })); |