fix: style links in footer (#3178)

Co-authored-by: Kia King Ishii <kia.king.08@gmail.com>
pull/3193/head
Akshay Raj Gollahalli 8 months ago committed by GitHub
parent b781450ddf
commit a482611d17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -28,6 +28,16 @@ const { hasSidebar } = useSidebar()
display: none;
}
.VPFooter :deep(a) {
text-decoration-line: underline;
text-underline-offset: 2px;
transition: color 0.25s;
}
.VPFooter :deep(a:hover) {
color: var(--vp-c-text-1);
}
@media (min-width: 768px) {
.VPFooter {
padding: 32px;

Loading…
Cancel
Save