react-magma-dom 5.1.0-rc.18 → 5.1.0-rc.19

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.
@@ -16989,7 +16989,9 @@ var Drawer = /*#__PURE__*/React.forwardRef(function (props, _ref) {
16989
16989
  isAnimated = _props$isAnimated === void 0 ? false : _props$isAnimated,
16990
16990
  rest = _objectWithoutPropertiesLoose(props, _excluded$1H);
16991
16991
  var theme = React.useContext(ThemeContext);
16992
- var drawerStyle = _extends({}, theme.drawer["default"], theme.drawer[exports.DrawerPosition[position]]);
16992
+ var drawerStyle = _extends({}, theme.drawer["default"], theme.drawer[exports.DrawerPosition[position]], {
16993
+ overflowY: 'auto'
16994
+ });
16993
16995
  var containerTransition;
16994
16996
  if (isAnimated) {
16995
16997
  containerTransition = position ? transitionPreset[exports.DrawerPosition[position]] : transitionPreset[exports.DrawerPosition[exports.DrawerPosition.top]];