-
Notifications
You must be signed in to change notification settings - Fork 70
Open
Description
When browsing the docs in Firefox, I see yellow underlines, but when I use Safari, I do not.
I noticed this when reading the docs on my iPad, but macOS Safari also has the issue.


I believe the issue is from around here:
automerge.github.io/src/css/custom.css
Lines 88 to 91 in 6246fb7
article a { | |
--ifm-link-decoration: underline 3px solid var(--ifm-color-primary); | |
--ifm-link-hover-decoration: underline 3px solid var(--ifm-color-primary); | |
} |
When I tried this alternative CSS locally, it worked, but I'm not sure it aligns with your Infima usage (which I am unfamiliar with).
article a,
article a:hover {
text-decoration-line: underline;
text-decoration-thickness: 3px;
text-decoration-style: solid;
text-decoration-color: var(--ifm-color-primary);
}
Metadata
Metadata
Assignees
Labels
No labels