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 (
<span style={{
fontSize: '0.8em',
paddingLeft: 0,
paddingRight: 5,
fontStyle: 'italic',
color: this.props.theme.base09
<div style={{
color: this.props.theme.base09,
paddingTop: 20,
paddingLeft: 30,
paddingRight: 30,
paddingBottom: 35
}}>
({errorText})
</span>
{errorText}
</div>
);
}