Skip to content

Commit e876830

Browse files
committed
add relative position to the table container to avoid overflows
1 parent 6436fd1 commit e876830

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Table/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ interface TableProps extends ThemingProps<"Table"> {
2323
const Table = (props: TableProps) => {
2424
const { variant, ...rest } = props
2525
return (
26-
<TableContainer whiteSpace="normal">
26+
<TableContainer whiteSpace="normal" position="relative">
2727
<ChakraTable variant={variant} {...rest} />
2828
</TableContainer>
2929
)

0 commit comments

Comments
 (0)