Just be a little less ugly

pull/1/head
David Baker 2015-06-16 14:27:13 +01:00
parent f25bf58d6d
commit 2bd5b0fdad
3 changed files with 13 additions and 1 deletions

View File

@ -0,0 +1,6 @@
.mx_MessageTimestamp {
color: #777;
width: 75px;
font-size: 80%;
display: inline-block;
}

View File

@ -0,0 +1,6 @@
.mx_SenderProfile {
display: inline-block;
width: 150px;
color: #444;
font-size: 80%;
}

View File

@ -20,7 +20,7 @@ module.exports = React.createClass({
return (
<div className="mx_MessageTile">
<MessageTimestamp ts={this.props.mxEvent.getTs()} />
<SenderProfile mxEvent={this.props.mxEvent} />:
<SenderProfile mxEvent={this.props.mxEvent} />
<TileType mxEvent={this.props.mxEvent} />
</div>
);