aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-06-28 05:45:01 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-06-28 05:45:01 +0800
commit36836eb942dbdcf64dd211b36523f3b98af2e6cb (patch)
treee19e7dce203fc944029746009870714dcfc72cea /packages
parentaad0804a1e14d935f7db8b061b1f2ec52b81cbef (diff)
downloaddexon-sol-tools-36836eb942dbdcf64dd211b36523f3b98af2e6cb.tar
dexon-sol-tools-36836eb942dbdcf64dd211b36523f3b98af2e6cb.tar.gz
dexon-sol-tools-36836eb942dbdcf64dd211b36523f3b98af2e6cb.tar.bz2
dexon-sol-tools-36836eb942dbdcf64dd211b36523f3b98af2e6cb.tar.lz
dexon-sol-tools-36836eb942dbdcf64dd211b36523f3b98af2e6cb.tar.xz
dexon-sol-tools-36836eb942dbdcf64dd211b36523f3b98af2e6cb.tar.zst
dexon-sol-tools-36836eb942dbdcf64dd211b36523f3b98af2e6cb.zip
Fix z index issue with wrap buttons and onboarding cards
Diffstat (limited to 'packages')
-rw-r--r--packages/website/ts/components/onboarding/add_eth_onboarding_step.tsx2
-rw-r--r--packages/website/ts/components/wallet/wrap_ether_item.tsx1
2 files changed, 2 insertions, 1 deletions
diff --git a/packages/website/ts/components/onboarding/add_eth_onboarding_step.tsx b/packages/website/ts/components/onboarding/add_eth_onboarding_step.tsx
index 31ce99d31..b11cd4ef5 100644
--- a/packages/website/ts/components/onboarding/add_eth_onboarding_step.tsx
+++ b/packages/website/ts/components/onboarding/add_eth_onboarding_step.tsx
@@ -6,7 +6,7 @@ export interface AddEthOnboardingStepProps {}
export const AddEthOnboardingStep: React.StatelessComponent<AddEthOnboardingStepProps> = () => (
<div className="flex items-center flex-column">
- <Text> Before you begin you will need to send some ETH to your metamask wallet.</Text>
+ <Text> Before you begin you will need to send some ETH to your wallet.</Text>
<Container marginTop="15px" marginBottom="15px">
<img src="/images/ether_alt.svg" height="50px" width="50px" />
</Container>
diff --git a/packages/website/ts/components/wallet/wrap_ether_item.tsx b/packages/website/ts/components/wallet/wrap_ether_item.tsx
index d6135ce4d..92aaf1ea9 100644
--- a/packages/website/ts/components/wallet/wrap_ether_item.tsx
+++ b/packages/website/ts/components/wallet/wrap_ether_item.tsx
@@ -173,6 +173,7 @@ export class WrapEtherItem extends React.Component<WrapEtherItemProps, WrapEther
<FlatButton
backgroundColor={colors.wrapEtherConfirmationButton}
label={labelText}
+ style={{ zIndex: 0 }}
labelStyle={styles.wrapEtherConfirmationButtonLabel}
onClick={this._wrapEtherConfirmationActionAsync.bind(this)}
disabled={this.state.isEthConversionHappening}