Skip to content

Commit

Permalink
Fix layer drag handle spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeer committed Nov 21, 2023
1 parent 9e998e3 commit a45039a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/CanvasLayers.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ const StyledDragHandle = styled('div')(({ theme }) => ({
display: 'flex',
flex: 1,
flexDirection: 'row',
marginBottom: -1 * theme.spacing(2) + 0.5,
marginBottom: theme.spacing(-2),
marginRight: theme.spacing(1),
marginTop: -1 * theme.spacing(2),
marginTop: theme.spacing(-2),
maxWidth: theme.spacing(3),
width: theme.spacing(3),
}));
Expand Down

0 comments on commit a45039a

Please sign in to comment.