mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
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:
parent
7e241ab29e
commit
ed66433323
1 changed files with 1 additions and 1 deletions
|
|
@ -290,7 +290,7 @@ export default class Term extends Component {
|
||||||
src={this.props.url}
|
src={this.props.url}
|
||||||
onFocus={this.handleFocus}
|
onFocus={this.handleFocus}
|
||||||
style={{
|
style={{
|
||||||
background: '#000',
|
background: '#fff',
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
top: 0,
|
top: 0,
|
||||||
left: 0,
|
left: 0,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue