Minor text change

This commit is contained in:
Hollgy 2024-03-20 14:32:32 +01:00
parent 0907e2b7bd
commit 7b87c92139

View file

@ -21,13 +21,13 @@ export function PostSegment({ post }: { post: Post }): JSXElement {
<div class="card compact w-full flex-grow border-b-2 border-b-primary bg-base-200 text-base-content transition-all hover:bg-base-300">
<div class="card-body md:mx-6">
<div class="flex flex-row justify-between">
<h3>{dateOfCreation}</h3>
<p class="text-xs">{dateOfCreation}</p>
<ReportButton />
</div>
<Show when={isEdited}>
<p>This post has been edited</p>
</Show>
<p class="break-words text-base-content md:pt-2">{post.content}</p>
<p class="text-base my-5">{post.content}</p>
<div class="card-actions justify-between">
<div class="flex">
<EngagementButton post={post} />