Skip to content

Commit c236570

Browse files
committedJan 8, 2024
fix(theme/regression): external link icon not working
closes #3424
1 parent f8fe3ae commit c236570

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed
 

‎src/client/theme-default/components/VPDoc.vue

-5
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,4 @@ const pageName = computed(() =>
190190
.VPDoc.has-aside .content-container {
191191
max-width: 688px;
192192
}
193-
194-
.external-link-icon-enabled :is(.vp-doc a[href*='://'], .vp-doc a[target='_blank'])::after {
195-
content: '';
196-
color: currentColor;
197-
}
198193
</style>

‎src/client/theme-default/styles/components/vp-doc.css

+6
Original file line numberDiff line numberDiff line change
@@ -558,3 +558,9 @@
558558
.vp-external-link-icon::after {
559559
content: '';
560560
}
561+
562+
/* prettier-ignore */
563+
.external-link-icon-enabled :is(.vp-doc a[href*='://'], .vp-doc a[target='_blank'])::after {
564+
content: '';
565+
color: currentColor;
566+
}

0 commit comments

Comments
 (0)
Please sign in to comment.