We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 231bb66 commit 79c31c9Copy full SHA for 79c31c9
src/components/Link.tsx
@@ -135,7 +135,9 @@ const Link: React.FC<IProps> = ({
135
>
136
<>
137
{children}
138
- <VisuallyHidden>(opens in a new tab)</VisuallyHidden>
+ <VisuallyHidden className="visually-hidden">
139
+ (opens in a new tab)
140
+ </VisuallyHidden>
141
{!hideArrow && (
142
<Box as="span" ml={0.5} mr={1.5} aria-hidden>
143
↗
src/components/MarkdownTable.tsx
@@ -14,6 +14,9 @@ const MarkdownTable: React.FC<IProps> = ({ children }) => (
14
borderColor: "border",
15
whiteSpace: "nowrap",
16
},
17
+ ".chakra-link .visually-hidden": {
18
+ width: "0px",
19
+ },
20
}}
21
22
0 commit comments