webchat: render "me" messages in italics

This commit is contained in:
Fang 2019-12-23 21:55:36 +01:00
parent f4ed556717
commit b8a336c607
No known key found for this signature in database
GPG Key ID: EB035760C1BBA972
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -56,7 +56,7 @@ export class Message extends Component {
);
} else if ('me' in letter) {
return (
<p className='f7 lh-copy v-top'>
<p className='f7 i lh-copy v-top'>
{letter.me}
</p>
);