Skip to content

Commit 3b3835c

Browse files
authored
Merge pull request #12128 from ethereum/fix-table-overflow
Fix table overflow
2 parents 734e187 + dcb61d1 commit 3b3835c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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
)

src/layouts/Static.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export const StaticLayout = ({
108108
pt={{ base: 8, lg: 16 }}
109109
dir={contentNotTranslated ? "ltr" : "unset"}
110110
>
111-
<Box>
111+
<Box w="full">
112112
{slug === "/guides/" ? (
113113
<HubHero
114114
heroImg={GuideHeroImage}

0 commit comments

Comments
 (0)