Skip to content

Commit 0f51176

Browse files
authored
Merge pull request #10172 from ethereum/fixMarkdownTableOverflow
Fix table overflow caused by VisuallyHidden width on external Links
2 parents 260460c + dfcdaa3 commit 0f51176

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/MarkdownTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export interface IProps {
66
}
77

88
const MarkdownTable: React.FC<IProps> = ({ children }) => (
9-
<Box my={8} overflowX="auto">
9+
<Box position="relative" my={8} overflowX="auto">
1010
<Table
1111
sx={{
1212
th: {

0 commit comments

Comments
 (0)