mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-23 20:23:08 +00:00
[Beta] Fix sticky sandboxes
This commit is contained in:
@@ -365,7 +365,11 @@ export const MDXComponents = {
|
||||
return children;
|
||||
},
|
||||
MaxWidth({children}: {children: any}) {
|
||||
return <div className="max-w-4xl ml-0 2xl:mx-auto">{children}</div>;
|
||||
return (
|
||||
<div className="max-w-4xl ml-0 2xl:mx-auto overflow-x-hidden">
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
},
|
||||
Gotcha,
|
||||
Wip,
|
||||
|
||||
@@ -74,7 +74,6 @@
|
||||
body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
/* Start purging... */
|
||||
|
||||
Reference in New Issue
Block a user