aboutsummaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/index.tsx b/src/index.tsx
index 5155ab7..c0f8c9b 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -8,7 +8,9 @@ import { AuthProvider } from './hooks/useAuth';
const useStyles = makeStyles(theme => ({
root: {
- margin: theme.spacing(4),
+ [theme.breakpoints.up('md')]: {
+ margin: theme.spacing(4)
+ },
padding: theme.spacing(2),
minHeight: theme.spacing(60)
}