Bug Fix: Link in a heading is rendered as an anchor and becomes invisible. #469
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
<a>
tags in headings are set to apply the style of%anchor
inmodule.scss
andcommon.scss
. Therefore, if I put a link in a heading, the link will have the same style as the anchor, which means that the font size becomes smaller and the link will not be displayed unless I hover the mouse over it.For example,
in a markdown file is displayed like this.
My suggestion is to set an
anchor
class for the<a>
tag of the anchor and apply style settings to theanchor
class, not to thea
tag.Type of change
How has this been tested
bash ./tools/deploy.sh --dry-run
(at the root of the project) locally and passedTest Configuration
Checklist