Fix and make toast dark theme

This commit is contained in:
David Ralph
2020-11-30 11:56:33 +00:00
parent 727e21480d
commit 86b6ad6542
3 changed files with 14 additions and 2 deletions

View File

@@ -112,8 +112,7 @@ export default class Quote extends React.PureComponent {
<div className='quotediv'>
<h1 className='quote'>{`${this.state.quote}`}</h1>
<h1 className='quoteauthor'>
<a href={this.state.authorlink} className='quoteauthorlink' target='_blank' rel='noopener noreferrer'>{this.state.author}</a>
{copy} {tweet} {this.state.favourited}
<a href={this.state.authorlink} className='quoteauthorlink' target='_blank' rel='noopener noreferrer'>{this.state.author}</a> {copy} {tweet} {this.state.favourited}
</h1>
</div>
);