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.
2 parents 734e187 + dcb61d1 commit 3b3835cCopy full SHA for 3b3835c
src/components/Table/index.tsx
@@ -23,7 +23,7 @@ interface TableProps extends ThemingProps<"Table"> {
23
const Table = (props: TableProps) => {
24
const { variant, ...rest } = props
25
return (
26
- <TableContainer whiteSpace="normal">
+ <TableContainer whiteSpace="normal" position="relative">
27
<ChakraTable variant={variant} {...rest} />
28
</TableContainer>
29
)
src/layouts/Static.tsx
@@ -108,7 +108,7 @@ export const StaticLayout = ({
108
pt={{ base: 8, lg: 16 }}
109
dir={contentNotTranslated ? "ltr" : "unset"}
110
>
111
- <Box>
+ <Box w="full">
112
{slug === "/guides/" ? (
113
<HubHero
114
heroImg={GuideHeroImage}
0 commit comments