Browse Source

Better display of balance on account page

master
meriadec 7 years ago
parent
commit
36827132d3
No known key found for this signature in database GPG Key ID: 1D2FC2305E2CB399
  1. 4
      src/components/AccountPage.js

4
src/components/AccountPage.js

@ -66,8 +66,8 @@ class AccountPage extends PureComponent<Props> {
<Fragment>
<Box horizontal flow={3}>
<Box grow>
<Card title="Balance" style={{ height: 415 }}>
{format(accountData.balance)}
<Card title="Balance" style={{ height: 415 }} align="center" justify="center">
<Text fontSize={6}>{format(accountData.balance)}</Text>
</Card>
</Box>

Loading…
Cancel
Save