Skip to content

Commit

Permalink
Fix scrollbar appearing in menu issue (#1539)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cloud11PL committed Dec 20, 2021
1 parent eb33197 commit c47fb6c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/CardMenu/CardMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ const CardMenu: React.FC<CardMenuProps> = props => {
{...TransitionProps}
style={{
transformOrigin:
placement === "bottom" ? "right top" : "right bottom"
placement === "bottom" ? "right top" : "right bottom",
overflowY: "auto"
}}
>
<Paper className={classes.paper}>
Expand Down

0 comments on commit c47fb6c

Please sign in to comment.