Skip to content

Commit

Permalink
fix: extra space for Action menu (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
shomukai authored Sep 5, 2024
1 parent 1f871fb commit 370ed93
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions lib/components/ActionsMenu/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,15 @@ const StyledActionsMenuContainer = styled.div`
&.hack-for-legacy-tests {
position: absolute;
pointer-events: none;
opacity: 0;
visibility: hidden;
height: 0;
width: 0;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
clip-path: inset(50%);
white-space: nowrap;
border-width: 0;
}
&.visible {
Expand Down

0 comments on commit 370ed93

Please sign in to comment.