aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/inputs
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-07-19 19:11:44 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-07-19 19:11:44 +0800
commitdead04dce8b26a09cb0b451711517bcb4dea182c (patch)
tree2f3ce593251dee6b5be2ae454fe4bcad27f2987b /packages/website/ts/components/inputs
parent3a18c249f5c780240f3dac7eb318118740056367 (diff)
downloaddexon-0x-contracts-dead04dce8b26a09cb0b451711517bcb4dea182c.tar
dexon-0x-contracts-dead04dce8b26a09cb0b451711517bcb4dea182c.tar.gz
dexon-0x-contracts-dead04dce8b26a09cb0b451711517bcb4dea182c.tar.bz2
dexon-0x-contracts-dead04dce8b26a09cb0b451711517bcb4dea182c.tar.lz
dexon-0x-contracts-dead04dce8b26a09cb0b451711517bcb4dea182c.tar.xz
dexon-0x-contracts-dead04dce8b26a09cb0b451711517bcb4dea182c.tar.zst
dexon-0x-contracts-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.tsx3
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}