We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5382935 commit fea20cbCopy full SHA for fea20cb
src/components/GitHubIssueLink/GitHubIssueLink.module.css
@@ -4,6 +4,7 @@
4
min-width: 0;
5
transition: color var(--t-interaction);
6
color: var(--ifm-font-color-base);
7
+ text-align: right;
8
9
&:hover,
10
&:active,
src/components/GitHubIssueLink/index.tsx
@@ -33,13 +33,9 @@ export const getReportIssueURL = function (pagePath: string): string {
33
};
34
export const GitHubIssueLink = function ({ pathname }: GitHubIssueLinkProps) {
35
return (
36
- <p>
37
- <a
38
- className={styles.githubLink}
39
- href={getReportIssueURL(pathname)}
40
- target={"_blank"}
41
- >
42
- {"Report an issue with this page."}
+ <p className={styles.githubLink}>
+ <a href={getReportIssueURL(pathname)} target={"_blank"}>
+ {"Report an issue with this page"}
43
</a>
44
</p>
45
);
0 commit comments