Skip to content

Commit

Permalink
fixes menu overflow bug
Browse files Browse the repository at this point in the history
fixes part of #264
  • Loading branch information
cedricwaxwing committed Nov 9, 2023
1 parent 666ff5a commit 7363faf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const RichTextButton = styled(Box)({

const RichTextContainer = styled(Box)({
position: "absolute",
maxWidth: 140,
width: 140,
background: palette.whites[1000],
borderRadius: 8,
boxShadow: "0px 4px 16px rgba(0, 0, 0, 0.05)",
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/components/commons/RichText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const RichTextButton = styled(Box)({

const RichTextContainer = styled(Box)({
position: "absolute",
maxWidth: 140,
width: 140,
background: palette.whites[1000],
borderRadius: 8,
boxShadow: "0px 4px 16px rgba(0, 0, 0, 0.05)",
Expand Down

0 comments on commit 7363faf

Please sign in to comment.