Skip to content

Commit

Permalink
fix: class name for the extra link in the helpful layout
Browse files Browse the repository at this point in the history
  • Loading branch information
GabsEdits committed Aug 10, 2024
1 parent bee759d commit 887f7d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@

- Migrate every `px` to `rem` for better scaling (I did that once already, but they appeared again)

### Fix(es)

- The class name for the extra link in the helpful layout

### Dependency(ies)

- Bump globals from 15.8.0 to 15.9.0 (https://github.com/aplosdev/aplos/pull/39)
Expand Down
4 changes: 2 additions & 2 deletions src/layouts/Helpful.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
:href="theme.nav.git + '/issues/new'"
>File an issue</a
>
<a v-else id="extra-link" :href="frontmatter.footlink.url">{{
<a v-else class="extra-link" :href="frontmatter.footlink.url">{{
frontmatter.footlink.text
}}</a>
</template>
Expand Down Expand Up @@ -54,7 +54,7 @@ const { theme, frontmatter } = useData();
}
}
#extra-link {
.extra-link {
background-color: transparent;
color: var(--color-accent);
Expand Down

0 comments on commit 887f7d8

Please sign in to comment.