diff options
author | Alexander Tseung <alextsg@users.noreply.github.com> | 2018-11-20 14:46:41 +0800 |
---|---|---|
committer | Dan Finlay <542863+danfinlay@users.noreply.github.com> | 2018-11-20 14:46:41 +0800 |
commit | a7b3750a3efd4dd521baf2aae4dab4c630aba418 (patch) | |
tree | eefebfd219fe75fb5b37020f3a2f2d863f338aad /ui/app/components | |
parent | 4c87c05a02d5bf5634234a74910e5d3e559dd413 (diff) | |
download | tangerine-wallet-browser-a7b3750a3efd4dd521baf2aae4dab4c630aba418.tar tangerine-wallet-browser-a7b3750a3efd4dd521baf2aae4dab4c630aba418.tar.gz tangerine-wallet-browser-a7b3750a3efd4dd521baf2aae4dab4c630aba418.tar.bz2 tangerine-wallet-browser-a7b3750a3efd4dd521baf2aae4dab4c630aba418.tar.lz tangerine-wallet-browser-a7b3750a3efd4dd521baf2aae4dab4c630aba418.tar.xz tangerine-wallet-browser-a7b3750a3efd4dd521baf2aae4dab4c630aba418.tar.zst tangerine-wallet-browser-a7b3750a3efd4dd521baf2aae4dab4c630aba418.zip |
Fix button styling for Create Account Connect (#5787)
Diffstat (limited to 'ui/app/components')
-rw-r--r-- | ui/app/components/pages/create-account/connect-hardware/account-list.js | 2 | ||||
-rw-r--r-- | ui/app/components/pages/create-account/connect-hardware/connect-screen.js | 16 |
2 files changed, 9 insertions, 9 deletions
diff --git a/ui/app/components/pages/create-account/connect-hardware/account-list.js b/ui/app/components/pages/create-account/connect-hardware/account-list.js index 2767b2e1f..c63de234a 100644 --- a/ui/app/components/pages/create-account/connect-hardware/account-list.js +++ b/ui/app/components/pages/create-account/connect-hardware/account-list.js @@ -152,7 +152,7 @@ class AccountList extends Component { }, [this.context.t('cancel')]), h(Button, { - type: 'primary', + type: 'confirm', large: true, className: 'new-account-connect-form__button unlock', disabled, 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 d3abf3119..49a5610c1 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 @@ -45,11 +45,13 @@ class ConnectScreen extends Component { this.renderConnectToLedgerButton(), this.renderConnectToTrezorButton(), ]), - h( - `button.hw-connect__connect-btn${!this.state.selectedDevice ? '.disabled' : ''}`, - { onClick: this.connect }, - this.context.t('connect') - ), + h(Button, { + type: 'confirm', + large: true, + className: 'hw-connect__connect-btn', + onClick: this.connect, + disabled: !this.state.selectedDevice, + }, this.context.t('connect')), ]) ) } @@ -67,9 +69,7 @@ class ConnectScreen extends Component { onClick: () => global.platform.openWindow({ url: 'https://google.com/chrome', }), - }, - this.context.t('downloadGoogleChrome') - ), + }, this.context.t('downloadGoogleChrome')), ]) ) } |