Add space when chat is copied

This closes #3308.
pull/3596/head
Isaac Levy 2017-09-12 12:44:05 -04:00
parent f1fa21c5c5
commit 051dad683a
2 changed files with 2 additions and 1 deletions

View File

@ -116,6 +116,7 @@ div.mchat .messages .user_link {
padding: 0;
margin-right: 6px;
opacity: 0.8;
word-spacing: -.25em;
}
div.mchat .messages a:not(.user_link) {
font-family: 'Roboto';

View File

@ -12,7 +12,7 @@ export function userLink(u: string) {
attrs: {
href: '/@/' + split[split.length === 1 ? 0 : 1]
}
}, u.substring(0, 14));
}, u.substring(0, 14) + " ");
}
export function spinner() {