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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
4 additions and
3 deletions
-
app/components/Form/Form.scss
-
app/routes/app/components/App.js
|
|
@ -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; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
@ -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> |
|
|
|
) |
|
|
|
} |
|
|
|