Skip to content

Commit 73365c9

Browse files
committed
fix tailwindcss/typography class
tailwindlabs/tailwindcss-typography#376
1 parent 72ddfa2 commit 73365c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/blog/.vitepress/theme/components/VPPost.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const { page, frontmatter } = useData()
2222
</li>
2323
</ul>
2424
<Content
25-
class="VPPost__content vp-doc prose dark:prose-invert hover:prose-a:decoration-dotted prose-a:break-all mt-8 max-w-full flex-grow"
25+
class="VPPost__content vp-doc prose dark:prose-invert prose-a:break-all prose-a:hover:decoration-dotted mt-8 max-w-full flex-grow"
2626
/>
2727
<hr class="mt-12 w-2/4" />
2828
</div>

packages/blog/.vitepress/theme/components/VPScrap.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const bodies = computed(() => [scrap.value, ...scrap.value.comments])
5151
<article :id="item.id" class="relative mx-8 my-3 flex flex-col">
5252
<!-- eslint-disable vue/no-v-html -->
5353
<div
54-
class="VPPost__content vp-doc prose dark:prose-invert hover:prose-a:decoration-dotted prose-a:break-all mt-4 max-w-full flex-grow"
54+
class="VPPost__content vp-doc prose dark:prose-invert prose-a:hover:decoration-dotted prose-a:break-all mt-4 max-w-full flex-grow"
5555
v-html="item.body"
5656
/>
5757
<!-- eslint-enable vue/no-v-html -->

0 commit comments

Comments
 (0)