forked from blisstown/campfire
fixed emote display in usernames and reactions
This commit is contained in:
parent
22feedaff5
commit
ce2f09721d
3 changed files with 12 additions and 2 deletions
|
@ -153,7 +153,7 @@
|
|||
<div id="account-button">
|
||||
<img src={$user.avatar_url} class="account-avatar" height="64px" alt="" aria-hidden="true" on:click={() => play_sound()}>
|
||||
<div class="account-name" aria-hidden="true">
|
||||
<a href={$user.url} class="nickname" title={$user.nickname}>{$user.nickname}</a>
|
||||
<a href={$user.url} class="nickname" title={$user.nickname}>{@html $user.rich_name}</a>
|
||||
<span class="username" title={`@${$user.username}@${$user.host}`}>
|
||||
{`@${$user.username}@${$user.host}`}
|
||||
</span>
|
||||
|
@ -345,6 +345,11 @@
|
|||
font-size: .65em;
|
||||
}
|
||||
|
||||
.nickname :global(.emoji) {
|
||||
height: 1.2em;
|
||||
margin: -.1em 0;
|
||||
}
|
||||
|
||||
.flex-row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue