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 dccd7d6 commit 2de7085Copy full SHA for 2de7085
apps/landing/src/components/mdx/components/Table/index.tsx
@@ -3,8 +3,14 @@ import { type ComponentProps } from 'react'
3
4
export const Table = ({ ...props }: ComponentProps<'table'>) => {
5
return (
6
- <Box borderRadius="0.5rem" overflow="visible">
7
- <Box {...props} as="table" borderCollapse="collapse" borderSpacing={0} />
+ <Box borderRadius="0.5rem" overflowX="auto">
+ <Box
8
+ {...props}
9
+ as="table"
10
+ borderCollapse="collapse"
11
+ borderSpacing={0}
12
+ whiteSpace="nowrap"
13
+ />
14
</Box>
15
)
16
}
0 commit comments