aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/_locales/en/messages.json2
-rw-r--r--ui/app/components/pages/create-account/connect-hardware/connect-screen.js5
-rw-r--r--ui/app/css/itcss/components/new-account.scss2
3 files changed, 6 insertions, 3 deletions
diff --git a/app/_locales/en/messages.json b/app/_locales/en/messages.json
index 658a77e77..4598d14a5 100644
--- a/app/_locales/en/messages.json
+++ b/app/_locales/en/messages.json
@@ -144,7 +144,7 @@
"message": "Metamask is able to access your TREZOR ethereum accounts. First make sure your device is connected and unlocked."
},
"connectToTrezorTrouble": {
- "message": "If you are having trouble, make sure you are using the latest version of the TREZOR firmware."
+ "message": "If you are having trouble, please make sure you are using the latest version of the TREZOR firmware."
},
"continue": {
"message": "Continue"
diff --git a/ui/app/components/pages/create-account/connect-hardware/connect-screen.js b/ui/app/components/pages/create-account/connect-hardware/connect-screen.js
index cf6353bf8..dd9fdfba2 100644
--- a/ui/app/components/pages/create-account/connect-hardware/connect-screen.js
+++ b/ui/app/components/pages/create-account/connect-hardware/connect-screen.js
@@ -33,7 +33,10 @@ class ConnectScreen extends Component {
h('p.hw-connect__msg', {}, this.context.t('connectToTrezorHelp')),
h('p.hw-connect__msg', {}, [
this.context.t('connectToTrezorTrouble'),
- h('a.___info-link', { url: 'https://support.metamask.io/', target: '_blank'}, this.context.t('learnMore')),
+ h('a.hw-connect__link', {
+ href: 'https://support.metamask.io/',
+ target: '_blank',
+ }, ` ${this.context.t('learnMore')}`),
]),
]),
h(
diff --git a/ui/app/css/itcss/components/new-account.scss b/ui/app/css/itcss/components/new-account.scss
index 3d59081d8..7dfa839ab 100644
--- a/ui/app/css/itcss/components/new-account.scss
+++ b/ui/app/css/itcss/components/new-account.scss
@@ -165,7 +165,7 @@
margin-bottom: 15px;
}
- &__info-link {
+ &__link {
color: #2f9ae0;
}
}