Skip to content

Commit

Permalink
[Grow] Fix scroll on entered
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenway committed Jul 19, 2018
1 parent 373d1ea commit f0ce95f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion packages/material-ui/src/Grow/Grow.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const styles = {
},
entered: {
opacity: 1,
transform: getScale(1),
transform: `${getScale(1)} translateZ(0)`,
},
};

Expand Down
2 changes: 0 additions & 2 deletions packages/material-ui/src/Menu/Menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ export const styles = {
maxHeight: 'calc(100% - 96px)',
// Add iOS momentum scrolling.
WebkitOverflowScrolling: 'touch',
// Fix a scrolling issue on Chrome.
transform: 'translateZ(0)',
},
};

Expand Down

0 comments on commit f0ce95f

Please sign in to comment.