fix: anchor link visibility
This commit is contained in:
parent
5f6d05d772
commit
1790d83b5b
1 changed files with 13 additions and 2 deletions
|
|
@ -98,6 +98,19 @@ h4,
|
|||
h5,
|
||||
h6 {
|
||||
overflow-wrap: break-word;
|
||||
|
||||
&>a {
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
transition: visibility 0s, opacity 0.5s linear;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
&>a {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
|
|
@ -121,8 +134,6 @@ a {
|
|||
}
|
||||
|
||||
&.zola-anchor {
|
||||
color: var(--text);
|
||||
text-decoration-color: var(--text);
|
||||
margin-left: .5rem;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue