aboutsummaryrefslogtreecommitdiff
path: root/src/pages/Page.tsx
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2020-07-03 22:44:38 +0300
committereug-vs <eug-vs@keemail.me>2020-07-03 22:44:38 +0300
commit6a216b903899d1481f93ebff40e246f60c4c3e89 (patch)
tree9cae6a4aa2318e36015ef98116096ccd2f03a6e1 /src/pages/Page.tsx
parentf74dedfce4ade65cfe023c973a6c137a56c88ab5 (diff)
downloadwhich-ui-6a216b903899d1481f93ebff40e246f60c4c3e89.tar.gz
feat: adapt all pages to mobile view
Diffstat (limited to 'src/pages/Page.tsx')
-rw-r--r--src/pages/Page.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/Page.tsx b/src/pages/Page.tsx
index c2b422e..4c46ea8 100644
--- a/src/pages/Page.tsx
+++ b/src/pages/Page.tsx
@@ -13,7 +13,7 @@ import { useNavigate } from '../hooks/useNavigate';
const useStyles = makeStyles(theme => ({
root: {
- margin: isMobile ? theme.spacing(5, 2) : theme.spacing(15, 5, 5, 8)
+ margin: isMobile ? theme.spacing(2) : theme.spacing(15, 5, 5, 8)
}
}));