Skip to content

Commit

Permalink
fix(CollectionControl): fixed dragging bug
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrusoare committed Nov 23, 2024
1 parent 052af72 commit b600350
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,11 @@ class CollectionControl extends Component {
return (
<SortableListItem
className="clearfix"
css={{ justifyContent: 'flex-start' }}
css={theme => ({
justifyContent: 'flex-start',
display: '-webkit-flex',
paddingInline: theme.gridUnit * 3,
})}
key={this.props.keyAccessor(o)}
index={i}
>
Expand Down

0 comments on commit b600350

Please sign in to comment.