Skip to content

Commit

Permalink
fix: 🎨 Change note link placement to only be on content
Browse files Browse the repository at this point in the history
  • Loading branch information
CPlusPatch committed Apr 22, 2024
1 parent 126b2b9 commit a2b708a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/social-elements/notes/note.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
</Skeleton>
<div v-else-if="content" class="prose prose-invert prose-a:no-underline" v-html="content">
</div>
<div v-if="attachments.length > 0" class="[&:not(:first-child)]:mt-6">
<SocialElementsNotesAttachment v-for="attachment of attachments" :key="attachment.id"
:attachment="attachment" />
</div>
</NuxtLink>
<div v-if="attachments.length > 0" class="[&:not(:first-child)]:mt-6">
<SocialElementsNotesAttachment v-for="attachment of attachments" :key="attachment.id"
:attachment="attachment" />
</div>
<Skeleton class="!h-10 w-full mt-6" :enabled="true" v-if="isLoading"></Skeleton>
<div v-else
class="mt-6 flex flex-row items-stretch justify-between text-sm h-10 hover:[&>button]:bg-dark-800 [&>button]:duration-200 [&>button]:rounded [&>button]:flex [&>button]:flex-1 [&>button]:flex-row [&>button]:items-center [&>button]:justify-center">
Expand Down

0 comments on commit a2b708a

Please sign in to comment.