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. 2
      app/components/Form/Form.scss
  2. 3
      app/routes/app/components/App.js

2
app/components/Form/Form.scss

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

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

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

Loading…
Cancel
Save