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) {
sender = (
<span
className="message-sender"
style={{ marginLeft: window.charWidth + 'px' }}
onClick={this.handleSenderClick}>
<span>
{' '}
<span className="message-sender" onClick={this.handleSenderClick}>
{message.from}
</span>
</span>
);
}

File diff suppressed because one or more lines are too long