diff options
author | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-07 07:09:00 +0800 |
---|---|---|
committer | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-07 07:09:00 +0800 |
commit | 6861cd746290c076f066cb6e56ecd3ef3f60f607 (patch) | |
tree | d0e35a5336d074963724a06c83cf059c3d4b2258 /packages/instant/src | |
parent | d59027f0bc3a906ba2ba542eaa6aa98042993216 (diff) | |
download | dexon-sol-tools-6861cd746290c076f066cb6e56ecd3ef3f60f607.tar dexon-sol-tools-6861cd746290c076f066cb6e56ecd3ef3f60f607.tar.gz dexon-sol-tools-6861cd746290c076f066cb6e56ecd3ef3f60f607.tar.bz2 dexon-sol-tools-6861cd746290c076f066cb6e56ecd3ef3f60f607.tar.lz dexon-sol-tools-6861cd746290c076f066cb6e56ecd3ef3f60f607.tar.xz dexon-sol-tools-6861cd746290c076f066cb6e56ecd3ef3f60f607.tar.zst dexon-sol-tools-6861cd746290c076f066cb6e56ecd3ef3f60f607.zip |
Take out unneeded conditionals
Diffstat (limited to 'packages/instant/src')
-rw-r--r-- | packages/instant/src/components/zero_ex_instant_container.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/instant/src/components/zero_ex_instant_container.tsx b/packages/instant/src/components/zero_ex_instant_container.tsx index f73f9db8b..6d3c6cb27 100644 --- a/packages/instant/src/components/zero_ex_instant_container.tsx +++ b/packages/instant/src/components/zero_ex_instant_container.tsx @@ -42,9 +42,9 @@ export class ZeroExInstantContainer extends React.Component<ZeroExInstantContain borderRadius="3px" hasBoxShadow={true} overflow="hidden" - height={{ default: 'auto', sm: '100%' }} + height="100%" > - <Flex direction="column" height={{ default: 'auto', sm: '100%' }} justify="flex-start"> + <Flex direction="column" height={'100%'} justify="flex-start"> <SelectedAssetInstantHeading onSelectAssetClick={this._handleSymbolClick} /> <SelectedAssetBuyOrderProgress /> <LatestBuyQuoteOrderDetails /> |