react-magma-dom 4.11.0-next.21 → 4.11.0-next.23

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.
@@ -16943,7 +16943,9 @@ var Drawer = /*#__PURE__*/React.forwardRef(function (props, _ref) {
16943
16943
  isAnimated = _props$isAnimated === void 0 ? false : _props$isAnimated,
16944
16944
  rest = _objectWithoutPropertiesLoose(props, _excluded$1H);
16945
16945
  var theme = React.useContext(ThemeContext);
16946
- var drawerStyle = _extends({}, theme.drawer["default"], theme.drawer[exports.DrawerPosition[position]]);
16946
+ var drawerStyle = _extends({}, theme.drawer["default"], theme.drawer[exports.DrawerPosition[position]], {
16947
+ overflowY: 'auto'
16948
+ });
16947
16949
  var containerTransition;
16948
16950
  if (isAnimated) {
16949
16951
  containerTransition = position ? transitionPreset[exports.DrawerPosition[position]] : transitionPreset[exports.DrawerPosition[exports.DrawerPosition.top]];