Browse Source

Merge pull request #398 from mrfelton/fix/payment-form-on-top

fix(pay-form): ensure payment form shows on top
renovate/lint-staged-8.x
JimmyMow 7 years ago
committed by GitHub
parent
commit
b36071a424
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      app/components/Form/Form.scss
  2. 3
      app/routes/app/components/App.js

4
app/components/Form/Form.scss

@ -3,7 +3,7 @@
.container {
position: absolute;
top: 0;
z-index: 10;
z-index: 20;
height: 100vh;
width: 100%;
background: $spaceblue;
@ -26,4 +26,4 @@
svg {
color: $white;
}
}
}

3
app/routes/app/components/App.js

@ -85,7 +85,6 @@ class App extends Component {
<ContactModal {...contactModalProps} />
<Form formType={form.formType} formProps={formProps} closeForm={closeForm} />
<ChannelForm {...channelFormProps} />
<ReceiveModal {...receiveModalProps} />
@ -101,6 +100,8 @@ class App extends Component {
:
<Network {...networkTabProps} />
}
<Form formType={form.formType} formProps={formProps} closeForm={closeForm} />
</div>
)
}

Loading…
Cancel
Save