mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
minor css
This commit is contained in:
parent
556d382570
commit
89dddae4b1
@ -17,4 +17,8 @@
|
||||
|
||||
.no-border {
|
||||
border: none;
|
||||
}
|
||||
|
||||
code {
|
||||
word-wrap: break-word;;
|
||||
}
|
@ -19,8 +19,8 @@ var LogEntry = React.createClass({
|
||||
<td>
|
||||
<strong>{this.props.event.data.name}</strong><em>[{this.props.event.type}]</em>
|
||||
</td>
|
||||
<td>
|
||||
<code className='JSON'>{JSON.stringify(localEventData)}</code>
|
||||
<td style={{maxWidth: 300}}>
|
||||
<code className='JSON smalltext'>{JSON.stringify(localEventData)}</code>
|
||||
</td>
|
||||
<td>{this.props.event.createdBy}</td>
|
||||
</tr>
|
||||
|
@ -11,7 +11,7 @@ var LogEntryList = React.createClass({
|
||||
return <LogEntry event={event} key={event.name} />;
|
||||
});
|
||||
return (
|
||||
<div className='phm'>
|
||||
<div className=''>
|
||||
<table className='outerborder zebra-striped'>
|
||||
<thead>
|
||||
<tr>
|
||||
|
Loading…
Reference in New Issue
Block a user