aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-11-10 07:11:47 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-11-10 07:11:47 +0800
commit7460f2796a2a549eaed15051009e35229fb1280f (patch)
treeea8420cdc56e719458afd4fdb7c4786bf1093054 /packages/instant/src/components
parent7249cc7b495f370f7ec5672ca36456dd4b6779de (diff)
downloaddexon-sol-tools-7460f2796a2a549eaed15051009e35229fb1280f.tar
dexon-sol-tools-7460f2796a2a549eaed15051009e35229fb1280f.tar.gz
dexon-sol-tools-7460f2796a2a549eaed15051009e35229fb1280f.tar.bz2
dexon-sol-tools-7460f2796a2a549eaed15051009e35229fb1280f.tar.lz
dexon-sol-tools-7460f2796a2a549eaed15051009e35229fb1280f.tar.xz
dexon-sol-tools-7460f2796a2a549eaed15051009e35229fb1280f.tar.zst
dexon-sol-tools-7460f2796a2a549eaed15051009e35229fb1280f.zip
feat: add more info section to the metamask panel
Diffstat (limited to 'packages/instant/src/components')
-rw-r--r--packages/instant/src/components/install_wallet_panel_content.tsx8
-rw-r--r--packages/instant/src/components/standard_panel_content.tsx4
2 files changed, 8 insertions, 4 deletions
diff --git a/packages/instant/src/components/install_wallet_panel_content.tsx b/packages/instant/src/components/install_wallet_panel_content.tsx
index 07e56ed70..7000e27f6 100644
--- a/packages/instant/src/components/install_wallet_panel_content.tsx
+++ b/packages/instant/src/components/install_wallet_panel_content.tsx
@@ -1,6 +1,6 @@
import * as React from 'react';
-import { METAMASK_CHROME_STORE_URL } from '../constants';
+import { META_MASK_CHROME_STORE_URL, META_MASK_SITE_URL } from '../constants';
import { ColorOption } from '../style/theme';
import { MetaMaskLogo } from './meta_mask_logo';
@@ -14,9 +14,13 @@ export const InstallWalletPanelContent: React.StatelessComponent<InstallWalletPa
image={<MetaMaskLogo width={85} height={80} />}
title="Install MetaMask"
description="Please install the MetaMask wallet extension from the Chrome Store."
+ moreInfoSettings={{
+ href: META_MASK_SITE_URL,
+ text: 'What is MetaMask?',
+ }}
action={
<Button
- href={METAMASK_CHROME_STORE_URL}
+ href={META_MASK_CHROME_STORE_URL}
width="100%"
fontSize="16px"
fontColor={ColorOption.white}
diff --git a/packages/instant/src/components/standard_panel_content.tsx b/packages/instant/src/components/standard_panel_content.tsx
index da851b232..fca5383ea 100644
--- a/packages/instant/src/components/standard_panel_content.tsx
+++ b/packages/instant/src/components/standard_panel_content.tsx
@@ -43,14 +43,14 @@ export const StandardPanelContent: React.StatelessComponent<StandardPanelContent
</Container>
<Container marginBottom={spacingBetweenPx}>
{moreInfoSettings && (
- <a href={moreInfoSettings.href}>
+ <a href={moreInfoSettings.href} target="_blank">
<Text
center={true}
fontSize="13px"
textDecorationLine="underline"
fontColor={ColorOption.lightGrey}
>
- {moreInfoSettings.text}>
+ {moreInfoSettings.text}
</Text>
</a>
)}