diff options
| author | Henry Jameson <me@hjkos.com> | 2022-04-12 17:17:52 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-04-12 17:17:52 +0300 |
| commit | 08ad2923a58b08f8522b90938d9a330993904ea7 (patch) | |
| tree | 2571de4a425964dd560295a8ed939b8136f6d6d3 /src/components/chat_title/chat_title.vue | |
| parent | e5eca8a554446dfdfbe6049d14737979074cf18d (diff) | |
fix chats button alignment
Diffstat (limited to 'src/components/chat_title/chat_title.vue')
| -rw-r--r-- | src/components/chat_title/chat_title.vue | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/components/chat_title/chat_title.vue b/src/components/chat_title/chat_title.vue index 06ad129d..99a7a64e 100644 --- a/src/components/chat_title/chat_title.vue +++ b/src/components/chat_title/chat_title.vue @@ -4,13 +4,13 @@ :title="title" > <router-link + class="avatar-container" v-if="withAvatar && user" :to="getUserProfileLink(user)" > <UserAvatar + class="titlebar-avatar" :user="user" - width="23px" - height="23px" /> </router-link> <RichContent @@ -32,7 +32,6 @@ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; - align-items: center; --emoji-size: 14px; @@ -45,11 +44,14 @@ overflow: hidden; } - .Avatar { - width: 23px; - height: 23px; - margin-right: 0.5em; + .avatar-container { + align-self: center; + } + .titlebar-avatar { + margin-right: 0.5em; + height: 1.5em; + width: 1.5em; border-radius: $fallback--avatarAltRadius; border-radius: var(--avatarAltRadius, $fallback--avatarAltRadius); |
