Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Merge pull request #6049 from luixxiul/fix-transfer-funds-button
Browse files Browse the repository at this point in the history
Added margin-bottom to the transfer funds button on about:preferences#payments
  • Loading branch information
bsclifton authored Dec 7, 2016
2 parents 2bff644 + 335d3f0 commit 254cffb
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
6 changes: 3 additions & 3 deletions js/about/preferences.js
Original file line number Diff line number Diff line change
Expand Up @@ -506,12 +506,12 @@ class BitcoinDashboard extends ImmutableComponent {
this.ledgerData.get('hasBitcoinHandler') && this.ledgerData.get('paymentURL')
? <div>
<a href={this.ledgerData.get('paymentURL')} target='_blank'>
<Button l10nId='bitcoinVisitAccount' className='primaryButton' />
<Button l10nId='bitcoinVisitAccount' className='primaryButton bitcoinAddressButton' />
</a>
<div data-l10n-id='bitcoinAddress' className='labelText' />
<div data-l10n-id='bitcoinAddress' className='walletLabelText' />
</div>
: <div>
<div data-l10n-id='bitcoinPaymentURL' className='labelText' />
<div data-l10n-id='bitcoinPaymentURL' className='walletLabelText' />
</div>
}
<div className='walletAddressText'>{this.ledgerData.get('address')}</div>
Expand Down
12 changes: 11 additions & 1 deletion less/about/preferences.less
Original file line number Diff line number Diff line change
Expand Up @@ -941,10 +941,20 @@ div.nextPaymentSubmission {
font-size: 0.9em;
}

.bitcoinAddressButton {
margin-bottom: 15px; // .walletAddressText
}

.walletLabelText {
font-size: 1em;
color: @braveOrange;
margin-bottom: 5px;
}

.walletAddressText {
font-size: 12px;
color: black;
margin-bottom: 20px;
margin-bottom: 15px; // .bitcoinAddressButton
}

.settingsListTitle {
Expand Down

0 comments on commit 254cffb

Please sign in to comment.