Fix z index issue with wrap buttons and onboarding cards

This commit is contained in:
fragosti
2018-06-27 14:45:01 -07:00
parent aad0804a1e
commit 36836eb942
2 changed files with 2 additions and 1 deletions

View File

@@ -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>

View File

@@ -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}