Tweak error reporting style

This commit is contained in:
Dan Abramov 2015-08-12 15:53:12 +03:00
parent e0d1f7f7a6
commit 279480ac15

View File

@ -38,15 +38,15 @@ export default class LogMonitorEntry {
} }
} }
return ( return (
<span style={{ <div style={{
fontSize: '0.8em', color: this.props.theme.base09,
paddingLeft: 0, paddingTop: 20,
paddingRight: 5, paddingLeft: 30,
fontStyle: 'italic', paddingRight: 30,
color: this.props.theme.base09 paddingBottom: 35
}}> }}>
({errorText}) {errorText}
</span> </div>
); );
} }