Skip to content

Commit

Permalink
fix: hide anchor link in feed file
Browse files Browse the repository at this point in the history
  • Loading branch information
isunjn committed Dec 29, 2023
1 parent 8ad1158 commit e974d1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sass/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ a:focus-visible {

h1, h2, h3, h4, h5, h6 {
&:hover a.zola-anchor {
visibility: visible;
visibility: visible !important;
}
}

Expand Down
2 changes: 1 addition & 1 deletion templates/anchor-link.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<a class="zola-anchor" href="#{{ id }}" aria-label="Anchor link for: {{ id }}">#</a>
<a class="zola-anchor" href="#{{ id }}" aria-label="Anchor link for: {{ id }}" style="visibility: hidden;">#</a>

0 comments on commit e974d1f

Please sign in to comment.