aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components
diff options
context:
space:
mode:
authorSteve Klebanoff <steve.klebanoff@gmail.com>2018-11-07 07:09:00 +0800
committerSteve Klebanoff <steve.klebanoff@gmail.com>2018-11-07 07:09:00 +0800
commit6861cd746290c076f066cb6e56ecd3ef3f60f607 (patch)
treed0e35a5336d074963724a06c83cf059c3d4b2258 /packages/instant/src/components
parentd59027f0bc3a906ba2ba542eaa6aa98042993216 (diff)
downloaddexon-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/components')
-rw-r--r--packages/instant/src/components/zero_ex_instant_container.tsx4
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 />