@stoplight/elements-core 7.5.9 → 7.5.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.esm.js +1 -1
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -2295,7 +2295,7 @@ const SidebarLayout = React.forwardRef(({ sidebar, children, maxContentWidth = M
|
|
|
2295
2295
|
paddingLeft: `calc((100% - ${maxContentWidth}px) / 2)`,
|
|
2296
2296
|
minWidth: `${sidebarWidth}px`,
|
|
2297
2297
|
} }, sidebar),
|
|
2298
|
-
React.createElement(Box, { ref: scrollRef, bg: "canvas", px: 24, flex: 1, w: "full" },
|
|
2298
|
+
React.createElement(Box, { ref: scrollRef, bg: "canvas", px: 24, flex: 1, w: "full", overflowY: "auto" },
|
|
2299
2299
|
React.createElement(Box, { style: { maxWidth: `${maxContentWidth - sidebarWidth}px` }, py: 16 }, children))));
|
|
2300
2300
|
});
|
|
2301
2301
|
|
package/index.js
CHANGED
|
@@ -2349,7 +2349,7 @@ const SidebarLayout = React__namespace.forwardRef(({ sidebar, children, maxConte
|
|
|
2349
2349
|
paddingLeft: `calc((100% - ${maxContentWidth}px) / 2)`,
|
|
2350
2350
|
minWidth: `${sidebarWidth}px`,
|
|
2351
2351
|
} }, sidebar),
|
|
2352
|
-
React__namespace.createElement(mosaic.Box, { ref: scrollRef, bg: "canvas", px: 24, flex: 1, w: "full" },
|
|
2352
|
+
React__namespace.createElement(mosaic.Box, { ref: scrollRef, bg: "canvas", px: 24, flex: 1, w: "full", overflowY: "auto" },
|
|
2353
2353
|
React__namespace.createElement(mosaic.Box, { style: { maxWidth: `${maxContentWidth - sidebarWidth}px` }, py: 16 }, children))));
|
|
2354
2354
|
});
|
|
2355
2355
|
|
package/index.mjs
CHANGED
|
@@ -2295,7 +2295,7 @@ const SidebarLayout = React.forwardRef(({ sidebar, children, maxContentWidth = M
|
|
|
2295
2295
|
paddingLeft: `calc((100% - ${maxContentWidth}px) / 2)`,
|
|
2296
2296
|
minWidth: `${sidebarWidth}px`,
|
|
2297
2297
|
} }, sidebar),
|
|
2298
|
-
React.createElement(Box, { ref: scrollRef, bg: "canvas", px: 24, flex: 1, w: "full" },
|
|
2298
|
+
React.createElement(Box, { ref: scrollRef, bg: "canvas", px: 24, flex: 1, w: "full", overflowY: "auto" },
|
|
2299
2299
|
React.createElement(Box, { style: { maxWidth: `${maxContentWidth - sidebarWidth}px` }, py: 16 }, children))));
|
|
2300
2300
|
});
|
|
2301
2301
|
|