Use white background on webviews:

Most web clients apply a default white background to web pages, so some
websites omit explicitly setting their page backgrounds to white. The
default black background on the webview component was making some sites
unreadable. This commit just changes it from black to white.
This commit is contained in:
Cole Peters 2016-10-11 18:27:00 +01:00 committed by Martin Ek
parent 7e241ab29e
commit ed66433323

View file

@ -290,7 +290,7 @@ export default class Term extends Component {
src={this.props.url}
onFocus={this.handleFocus}
style={{
background: '#000',
background: '#fff',
position: 'absolute',
top: 0,
left: 0,