Skip to content

Commit

Permalink
fix: style links in footer (#3178)
Browse files Browse the repository at this point in the history
Co-authored-by: Kia King Ishii <kia.king.08@gmail.com>
  • Loading branch information
akshaybabloo and kiaking committed Nov 6, 2023
1 parent b781450 commit a482611
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/client/theme-default/components/VPFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a482611

Please sign in to comment.