mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-25 12:52:47 -07:00
fix(docs): content overflow (#423)
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user