fix: make donation styles consistent (#37140)

* fix: adjust the styles of alerts

* fix: clean up
This commit is contained in:
Ahmad Abdolsaheb
2019-10-09 15:02:39 +03:00
committed by mrugesh
parent fa06ac0def
commit 418f7631af
2 changed files with 8 additions and 2 deletions

View File

@ -104,3 +104,7 @@
.wallet { .wallet {
overflow-wrap: break-word; overflow-wrap: break-word;
} }
.alert p {
color: inherit;
}

View File

@ -22,12 +22,14 @@ function DonateCompletion({ processing, reset, success, error = null }) {
: 'Something went wrong with your donation'; : 'Something went wrong with your donation';
return ( return (
<Alert bsStyle={style} className='donation-completion'> <Alert bsStyle={style} className='donation-completion'>
<h4>{heading}</h4> <h4>
<b>{heading}</b>
</h4>
<div className='donation-completion-body'> <div className='donation-completion-body'>
{processing && ( {processing && (
<Spinner <Spinner
className='user-state-spinner' className='user-state-spinner'
color='#006400' color='#0a0a23'
fadeIn='none' fadeIn='none'
name='line-scale' name='line-scale'
/> />