diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-07-19 19:11:44 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-07-19 19:11:44 +0800 |
commit | dead04dce8b26a09cb0b451711517bcb4dea182c (patch) | |
tree | 2f3ce593251dee6b5be2ae454fe4bcad27f2987b /packages/website/ts/components/inputs | |
parent | 3a18c249f5c780240f3dac7eb318118740056367 (diff) | |
download | dexon-sol-tools-dead04dce8b26a09cb0b451711517bcb4dea182c.tar dexon-sol-tools-dead04dce8b26a09cb0b451711517bcb4dea182c.tar.gz dexon-sol-tools-dead04dce8b26a09cb0b451711517bcb4dea182c.tar.bz2 dexon-sol-tools-dead04dce8b26a09cb0b451711517bcb4dea182c.tar.lz dexon-sol-tools-dead04dce8b26a09cb0b451711517bcb4dea182c.tar.xz dexon-sol-tools-dead04dce8b26a09cb0b451711517bcb4dea182c.tar.zst dexon-sol-tools-dead04dce8b26a09cb0b451711517bcb4dea182c.zip |
WIP for sending ether from portal (works)
Diffstat (limited to 'packages/website/ts/components/inputs')
-rw-r--r-- | packages/website/ts/components/inputs/eth_amount_input.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/website/ts/components/inputs/eth_amount_input.tsx b/packages/website/ts/components/inputs/eth_amount_input.tsx index 552d4277a..3a7905442 100644 --- a/packages/website/ts/components/inputs/eth_amount_input.tsx +++ b/packages/website/ts/components/inputs/eth_amount_input.tsx @@ -28,14 +28,13 @@ export class EthAmountInput extends React.Component<EthAmountInputProps, EthAmou public static defaultProps: Partial<EthAmountInputProps> = { shouldShowErrs: true, shouldShowUnderline: true, - style: { height: 63 }, }; public render(): React.ReactNode { const amount = this.props.amount ? Web3Wrapper.toUnitAmount(this.props.amount, constants.DECIMAL_PLACES_ETH) : undefined; return ( - <div className="flex overflow-hidden" style={this.props.style}> + <div className="flex" style={this.props.style}> <BalanceBoundedInput label={this.props.label} balance={this.props.balance} |