Insert space between timestamp and nick instead of using margin

This commit is contained in:
khlieng 2015-05-15 00:42:09 +02:00
parent 0eca6a1823
commit c4ac9f782c
2 changed files with 20 additions and 20 deletions

View File

@ -22,11 +22,11 @@ var MessageHeader = React.createClass({
if (message.from) { if (message.from) {
sender = ( sender = (
<span <span>
className="message-sender" {' '}
style={{ marginLeft: window.charWidth + 'px' }} <span className="message-sender" onClick={this.handleSenderClick}>
onClick={this.handleSenderClick}>
{message.from} {message.from}
</span>
</span> </span>
); );
} }

File diff suppressed because one or more lines are too long