File tree 2 files changed +2
-7
lines changed
2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -135,9 +135,7 @@ const Link: React.FC<IProps> = ({
135
135
>
136
136
< >
137
137
{ children }
138
- < VisuallyHidden className = "visually-hidden" >
139
- (opens in a new tab)
140
- </ VisuallyHidden >
138
+ < VisuallyHidden > (opens in a new tab)</ VisuallyHidden >
141
139
{ ! hideArrow && (
142
140
< Box as = "span" ml = { 0.5 } mr = { 1.5 } aria-hidden >
143
141
↗
Original file line number Diff line number Diff line change @@ -6,17 +6,14 @@ export interface IProps {
6
6
}
7
7
8
8
const MarkdownTable : React . FC < IProps > = ( { children } ) => (
9
- < Box my = { 8 } overflowX = "auto" >
9
+ < Box position = "relative" my = { 8 } overflowX = "auto" >
10
10
< Table
11
11
sx = { {
12
12
th : {
13
13
borderBottom : "1px solid" ,
14
14
borderColor : "border" ,
15
15
whiteSpace : "nowrap" ,
16
16
} ,
17
- ".chakra-link .visually-hidden" : {
18
- width : "0px" ,
19
- } ,
20
17
} }
21
18
>
22
19
{ children }
You can’t perform that action at this time.
0 commit comments