fix(client): 404 night mode

This commit is contained in:
Valeriy
2019-02-03 13:40:37 +03:00
committed by mrugesh mohapatra
parent 1f923db64b
commit 0030892645
2 changed files with 3 additions and 2 deletions

View File

@ -16,6 +16,7 @@
.quote-wrapper { .quote-wrapper {
background-color: #eee; background-color: #eee;
padding: 20px 20px 20px 42px; padding: 20px 20px 20px 42px;
border-width: 0;
border-radius: 5px; border-radius: 5px;
position: relative; position: relative;
max-width: 980px; max-width: 980px;

View File

@ -38,13 +38,13 @@ class NotFoundPage extends Component {
We couldn't find what you were looking for, but here is a We couldn't find what you were looking for, but here is a
quote: quote:
</p> </p>
<div className='quote-wrapper'> <blockquote className='quote-wrapper'>
<p className='quote'> <p className='quote'>
<span>&#8220;</span> <span>&#8220;</span>
{this.state.randomQuote.quote} {this.state.randomQuote.quote}
</p> </p>
<p className='author'>- {this.state.randomQuote.author}</p> <p className='author'>- {this.state.randomQuote.author}</p>
</div> </blockquote>
</div> </div>
) : ( ) : (
<Spinner color='#006400' name='ball-clip-rotate-multiple' /> <Spinner color='#006400' name='ball-clip-rotate-multiple' />