Fix wrong position of social media icon (#6426)

Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com>
This commit is contained in:
Kristina 2024-08-28 19:45:06 +04:00 committed by GitHub
parent ee4bbb055d
commit 6e47c6d378
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -177,7 +177,7 @@
<MessageTimestamp date={message.createdOn ?? message.modifiedOn} shortTime />
</span>
{:else}
<div class="min-w-6 mt-1 relative flex-no-shrink">
<div class="avatar mt-1 relative flex-no-shrink">
{#if $$slots.icon}
<slot name="icon" />
{:else if person}
@ -344,6 +344,11 @@
}
}
.avatar {
width: 2.5rem;
height: 2.5rem;
}
.header {
display: flex;
align-items: baseline;