diff options
author | Fabio Berger <me@fabioberger.com> | 2017-12-06 12:07:25 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-12-06 12:07:25 +0800 |
commit | cfb9f874180c95f396ffc5a40fc508584c344802 (patch) | |
tree | b7fcb832e1ec0f90c592303b2c9d297cce501373 | |
parent | 06e348f80ba1e5580d18d927600688863f73c423 (diff) | |
download | dexon-sol-tools-cfb9f874180c95f396ffc5a40fc508584c344802.tar dexon-sol-tools-cfb9f874180c95f396ffc5a40fc508584c344802.tar.gz dexon-sol-tools-cfb9f874180c95f396ffc5a40fc508584c344802.tar.bz2 dexon-sol-tools-cfb9f874180c95f396ffc5a40fc508584c344802.tar.lz dexon-sol-tools-cfb9f874180c95f396ffc5a40fc508584c344802.tar.xz dexon-sol-tools-cfb9f874180c95f396ffc5a40fc508584c344802.tar.zst dexon-sol-tools-cfb9f874180c95f396ffc5a40fc508584c344802.zip |
Fix Party element so that an identicon's height is that which was passed in
-rw-r--r-- | packages/website/ts/components/ui/party.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/website/ts/components/ui/party.tsx b/packages/website/ts/components/ui/party.tsx index 2927d9d3d..5bafa6071 100644 --- a/packages/website/ts/components/ui/party.tsx +++ b/packages/website/ts/components/ui/party.tsx @@ -73,7 +73,7 @@ export class Party extends React.Component<PartyProps, PartyState> { /> : <div className="mx-auto" - style={{height: IMAGE_DIMENSION, width: IMAGE_DIMENSION}} + style={{height: identiconDiameter, width: identiconDiameter}} > <Identicon address={this.props.address} |