Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Initialize Lisk Id button color - Closes #1996 #1998

Merged
merged 3 commits into from May 10, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/dashboard/index.js
Expand Up @@ -95,7 +95,7 @@ class Dashboard extends React.Component {
footer={(
<Fragment>
<Link to={`${routes.send.path}?recipient=${account.address}&amount=0.1&reference=Account initialization`}>
<SecondaryButtonV2>{t('Create First Transaction')}</SecondaryButtonV2>
<SecondaryButtonV2 className='light' >{t('Create First Transaction')}</SecondaryButtonV2>
</Link>
<a
className={styles.initLink}
Expand Down
Expand Up @@ -197,16 +197,16 @@ class WalletTransactionsV2 extends React.Component {
onClose={this.closeOnboarding}
title={t('Add some LSK to your Lisk Hub account now!')}
footer={(
<div className={styles.copyAddress}>
<span className={styles.copyAddress}>
<span className={styles.address}>{account.address}</span>
<CopyToClipboard
text={account.address}
onCopy={this.onCopy}>
<SecondaryButtonV2 disabled={this.state.copied}>
<SecondaryButtonV2 disabled={this.state.copied} className='light'>
<span>{this.state.copied ? t('Copied') : t('Copy')}</span>
</SecondaryButtonV2>
</CopyToClipboard>
</div>
</span>
)}>
<p>{t('You can find the LSK token on all of the worlds top exchanges and send them to your unique Lisk address:')}</p>
</Banner> : null
Expand Down