aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages/keychains/reveal-seed.js
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2018-05-30 05:33:29 +0800
committerAlexander Tseung <alextsg@users.noreply.github.com>2018-06-01 01:37:52 +0800
commitf4d833cb09758beb62a65ad4011d16bdb81b33ff (patch)
tree6a191c3de37c1918a5dda48d5ab084624a9a919f /ui/app/components/pages/keychains/reveal-seed.js
parent39d22a4ddb4ba0f4ad456009c86486a433c6724e (diff)
downloadtangerine-wallet-browser-f4d833cb09758beb62a65ad4011d16bdb81b33ff.tar.gz
tangerine-wallet-browser-f4d833cb09758beb62a65ad4011d16bdb81b33ff.tar.zst
tangerine-wallet-browser-f4d833cb09758beb62a65ad4011d16bdb81b33ff.zip
Change btn-secondary styles to btn-default. Make btn-secondary red warning style buttons
Diffstat (limited to 'ui/app/components/pages/keychains/reveal-seed.js')
-rw-r--r--ui/app/components/pages/keychains/reveal-seed.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/components/pages/keychains/reveal-seed.js b/ui/app/components/pages/keychains/reveal-seed.js
index 685c81074..7d7d3f462 100644
--- a/ui/app/components/pages/keychains/reveal-seed.js
+++ b/ui/app/components/pages/keychains/reveal-seed.js
@@ -106,10 +106,10 @@ class RevealSeedPage extends Component {
renderPasswordPromptFooter () {
return (
h('.page-container__footer', [
- h('button.btn-secondary--lg.page-container__footer-button', {
+ h('button.btn-default.btn--large.page-container__footer-button', {
onClick: () => this.props.history.push(DEFAULT_ROUTE),
}, this.context.t('cancel')),
- h('button.btn-primary--lg.page-container__footer-button', {
+ h('button.btn-primary.btn--large.page-container__footer-button', {
onClick: event => this.handleSubmit(event),
disabled: this.state.password === '',
}, this.context.t('next')),
@@ -120,7 +120,7 @@ class RevealSeedPage extends Component {
renderRevealSeedFooter () {
return (
h('.page-container__footer', [
- h('button.btn-secondary--lg.page-container__footer-button', {
+ h('button.btn-default.btn--large.page-container__footer-button', {
onClick: () => this.props.history.push(DEFAULT_ROUTE),
}, this.context.t('close')),
])