diff options
author | eug-vs <eug-vs@keemail.me> | 2020-08-14 04:09:56 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-08-14 04:19:52 +0300 |
commit | 917d83bfb70d863944df62fb3ca254ba74e67e6e (patch) | |
tree | f3739faea2ad5ee23d083d2ab1d23f67db1a9170 /src/containers/Profile/ProfileInfo.tsx | |
parent | dc0d09f568ca9eeda4978c4750b548ba81688c23 (diff) | |
download | which-ui-917d83bfb70d863944df62fb3ca254ba74e67e6e.tar.gz |
feat: add EmptyState component
Diffstat (limited to 'src/containers/Profile/ProfileInfo.tsx')
-rw-r--r-- | src/containers/Profile/ProfileInfo.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/containers/Profile/ProfileInfo.tsx b/src/containers/Profile/ProfileInfo.tsx index 82f640d..c5c5454 100644 --- a/src/containers/Profile/ProfileInfo.tsx +++ b/src/containers/Profile/ProfileInfo.tsx @@ -21,7 +21,8 @@ interface PropTypes { const useStyles = makeStyles(theme => ({ root: { - position: 'relative' + position: 'relative', + marginBottom: theme.spacing(2) }, avatar: { width: 150, @@ -43,7 +44,7 @@ const useStyles = makeStyles(theme => ({ display: 'flex', width: '100%', height: 50, - margin: '50px 0', + marginTop: theme.spacing(6), borderBottom: '1px solid lightgray' }, menuButton: { |