Skip to content

Commit

Permalink
fix: file an issue button having the wrong class/id
Browse files Browse the repository at this point in the history
  • Loading branch information
GabsEdits committed Aug 18, 2024
1 parent f6525c0 commit 260ca6e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/layouts/Helpful.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ const { theme, frontmatter } = useData();
}
.extra-link {
background-color: transparent;
color: var(--color-accent);
background-color: transparent !important;
color: var(--color-accent) !important;
&:hover {
background-color: var(--color-accent);
color: var(--color-background-second);
background-color: var(--color-accent) !important;
color: var(--color-background) !important;
}
}
</style>
2 changes: 1 addition & 1 deletion src/layouts/NotFound.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<a onclick="window.history.go(-1)">← Go Back</a>
<a
v-if="theme.nav.git"
id="file-an-issue"
class="extra-link"
:href="theme.nav.git + '/issues/new'"
>File an issue</a
>
Expand Down

0 comments on commit 260ca6e

Please sign in to comment.