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

Added margin-bottom to the transfer funds button on about:preferences#payments #6049

Merged
merged 1 commit into from
Dec 7, 2016
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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