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.
1 parent dae817f commit 8f8bcb9Copy full SHA for 8f8bcb9
beta/src/components/MDX/MDXComponents.tsx
@@ -365,7 +365,11 @@ export const MDXComponents = {
365
return children;
366
},
367
MaxWidth({children}: {children: any}) {
368
- return <div className="max-w-4xl ml-0 2xl:mx-auto">{children}</div>;
+ return (
369
+ <div className="max-w-4xl ml-0 2xl:mx-auto overflow-x-hidden">
370
+ {children}
371
+ </div>
372
+ );
373
374
Gotcha,
375
Wip,
beta/src/styles/index.css
@@ -74,7 +74,6 @@
74
body {
75
padding: 0;
76
margin: 0;
77
- overflow-x: hidden;
78
}
79
80
/* Start purging... */
0 commit comments