Skip to content

Commit a482611

Browse files
akshaybablookiaking
andauthoredNov 6, 2023
fix: style links in footer (#3178)
Co-authored-by: Kia King Ishii <kia.king.08@gmail.com>
1 parent b781450 commit a482611

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
 

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

+10
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,16 @@ const { hasSidebar } = useSidebar()
2828
display: none;
2929
}
3030
31+
.VPFooter :deep(a) {
32+
text-decoration-line: underline;
33+
text-underline-offset: 2px;
34+
transition: color 0.25s;
35+
}
36+
37+
.VPFooter :deep(a:hover) {
38+
color: var(--vp-c-text-1);
39+
}
40+
3141
@media (min-width: 768px) {
3242
.VPFooter {
3343
padding: 32px;

0 commit comments

Comments
 (0)
Please sign in to comment.