Browse Source

Merge pull request #418 from meriadec/master

Fix Dashboard page spacing
master
Meriadec Pillet 7 years ago
committed by GitHub
parent
commit
ea590b6c41
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/components/DashboardPage/index.js

4
src/components/DashboardPage/index.js

@ -111,7 +111,7 @@ class DashboardPage extends PureComponent<Props, State> {
return ( return (
<Box flow={7}> <Box flow={7}>
{totalAccounts > 0 ? ( {totalAccounts > 0 ? (
<Box> <Fragment>
<UpdateNotifier mt={-5} /> <UpdateNotifier mt={-5} />
<Box horizontal alignItems="flex-end"> <Box horizontal alignItems="flex-end">
<Box grow> <Box grow>
@ -194,7 +194,7 @@ class DashboardPage extends PureComponent<Props, State> {
withAccount withAccount
/> />
</Fragment> </Fragment>
</Box> </Fragment>
) : ( ) : (
<EmptyState /> <EmptyState />
)} )}

Loading…
Cancel
Save