Skip to content

Commit

Permalink
Replace margin with height
Browse files Browse the repository at this point in the history
  • Loading branch information
kgabryje committed Mar 29, 2022
1 parent cb79d66 commit cdac852
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ interface DragHandleProps {

const DragHandleContainer = styled.div<{ position: 'left' | 'top' }>`
${({ theme, position }) => css`
margin-bottom: ${theme.gridUnit}px !important;
height: ${theme.gridUnit * 5}px;
overflow: hidden;
cursor: move;
${position === 'top' &&
Expand Down

0 comments on commit cdac852

Please sign in to comment.