Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev 2022-02-08 16:02:57 +07:00 committed by GitHub
parent 9c278d46e4
commit f56e48f80b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

View File

@ -62,7 +62,9 @@
</StyledTextEditor>
{:else}
<div class="text">
<MessageViewer message={content} />
{#if content}
<MessageViewer message={content} />
{/if}
</div>
<div class="flex flex-reverse">
<ActionIcon

View File

@ -143,4 +143,13 @@
flex-grow: 1;
}
}
.description-container {
margin-top: 0.5rem;
display: flex;
padding: 1rem;
height: 12rem;
border-radius: .25rem;
background-color: var(--theme-bg-accent-color);
border: 1px solid var(--theme-bg-accent-color);
}
</style>