There was an error while loading. Please reload this page.
1 parent 838ea28 commit bfe052cCopy full SHA for bfe052c
1 file changed
src/components/blog/SinglePost.astro
@@ -30,7 +30,7 @@ const { Content } = post;
30
post.author && (
31
<>
32
{' '}
33
- ·{' '}<Icon name="tabler:user" class="w-4 h-4 inline-block -mt-0.5 dark:text-gray-400" />
+ · <Icon name="tabler:user" class="w-4 h-4 inline-block -mt-0.5 dark:text-gray-400" />
34
<span class="inline-block">{post.author}</span>
35
</>
36
)
@@ -46,7 +46,13 @@ const { Content } = post;
46
47
48
}
49
- {post.readingTime && <> · {post.readingTime} min read</>}
+ {
50
+ post.readingTime && (
51
+ <>
52
+ · <span>{post.readingTime}</span> min read
53
+ </>
54
+ )
55
+ }
56
</p>
57
</div>
58
0 commit comments