Skip to content

Commit 8ecca37

Browse files
committed
fix(blog): add spacing between comment author and text
1 parent 23260f0 commit 8ecca37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/components/BlueskyComment.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ function getHostname(uri: string): string {
121121
</div>
122122

123123
<!-- Comment text with rich segments -->
124-
<p class="text-fg-muted whitespace-pre-wrap">
124+
<p class="text-fg-muted whitespace-pre-wrap mt-2 mb-3">
125125
<template v-for="(segment, i) in processedSegments" :key="i">
126126
<a
127127
v-if="segment.url"
@@ -190,7 +190,7 @@ function getHostname(uri: string): string {
190190
<!-- Like/repost counts -->
191191
<div
192192
v-if="comment.likeCount > 0 || comment.repostCount > 0"
193-
class="mt-2 flex gap-4 text-sm text-fg-subtle"
193+
class="mt-1 flex gap-4 text-sm text-fg-subtle"
194194
>
195195
<span v-if="comment.likeCount > 0">
196196
{{ $t('blog.atproto.like_count', { count: comment.likeCount }, comment.likeCount) }}

0 commit comments

Comments
 (0)