fix(docs): content overflow (#423)

This commit is contained in:
Jacob Marshall
2025-01-26 18:27:33 +00:00
committed by GitHub
parent 83f3cae6f0
commit 82560ddc20
@@ -13,7 +13,14 @@ interface MdxWrapperProps {
export function MdxWrapper({ children }: MdxWrapperProps): JSX.Element {
return (
<Container size={1000} w="100%" display="flex" style={{ gap: 12 }}>
<Box id="mdx-root" component="article" mt="xl" px={16} py={36}>
<Box
id="mdx-root"
component="article"
mt="xl"
px={16}
py={36}
style={{ maxWidth: '100%' }}
>
<MdxProvider>{children}</MdxProvider>
<EditPage />
</Box>