Trezor Help Link & Decrypt UI (#1695)

This commit is contained in:
William O'Beirne 2018-04-30 14:40:39 -04:00 committed by Daniel Ternyak
parent a57d17a3e0
commit 34ef8857da
3 changed files with 7 additions and 2 deletions

View File

@ -59,6 +59,10 @@ $speed: 500ms;
text-align: center;
padding-bottom: $space;
@media (max-width: $screen-md) {
padding-bottom: $space * 2;
}
&-back {
@include reset-button;
position: absolute;

View File

@ -166,7 +166,8 @@ const WalletDecrypt = withRouter<Props>(
component: TrezorDecrypt,
initialParams: {},
unlock: this.props.setWallet,
helpLink: 'https://doc.satoshilabs.com/trezor-apps/mew.html'
helpLink:
'https://support.mycrypto.com/accessing-your-wallet/how-to-use-your-trezor-with-mycrypto.html'
},
[SecureWalletName.PARITY_SIGNER]: {
lid: 'X_PARITYSIGNER',

View File

@ -79,7 +79,7 @@ class TrezorDecryptClass extends PureComponent<Props, State> {
<div className={`TrezorDecrypt-error alert alert-danger ${showErr}`}>{error || '-'}</div>
<div className="TrezorDecrypt-help">
<NewTabLink href="https://blog.trezor.io/trezor-integration-with-myetherwallet-3e217a652e08">
<NewTabLink href="https://support.mycrypto.com/accessing-your-wallet/how-to-use-your-trezor-with-mycrypto.html">
How to use TREZOR with MyCrypto
</NewTabLink>
</div>