diff options
author | eug-vs <eug-vs@keemail.me> | 2020-07-03 22:44:38 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-07-03 22:44:38 +0300 |
commit | 6a216b903899d1481f93ebff40e246f60c4c3e89 (patch) | |
tree | 9cae6a4aa2318e36015ef98116096ccd2f03a6e1 /src/pages/Page.tsx | |
parent | f74dedfce4ade65cfe023c973a6c137a56c88ab5 (diff) | |
download | which-ui-6a216b903899d1481f93ebff40e246f60c4c3e89.tar.gz |
feat: adapt all pages to mobile view
Diffstat (limited to 'src/pages/Page.tsx')
-rw-r--r-- | src/pages/Page.tsx | 2 |
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) } })); |