Skip to content

Commit 1714e70

Browse files
committed
fix indentation
1 parent bbdecf1 commit 1714e70

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/index.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -382,13 +382,13 @@ class SortablePane extends Component {
382382
// shared across all children!
383383
var customStyle = Object.assign({}, child.props.style);
384384
Object.assign(customStyle, {
385-
boxShadow: `rgba(0, 0, 0, 0.2) 0px ${shadow}px ${2 * shadow}px 0px`,
386-
transform: `translate3d(${x}px, ${y}px, 0px) scale(${scale})`,
387-
WebkitTransform: `translate3d(${x}px, ${y}px, 0px) scale(${scale})`,
388-
MozTransform: `translate3d(${x}px, ${y}px, 0px) scale(${scale})`,
389-
MsTransform: `translate3d(${x}px, ${y}px, 0px) scale(${scale})`,
390-
zIndex: i === lastPressed ? 99 : i, // TODO: Add this.props.zIndex
391-
position: 'absolute',
385+
boxShadow: `rgba(0, 0, 0, 0.2) 0px ${shadow}px ${2 * shadow}px 0px`,
386+
transform: `translate3d(${x}px, ${y}px, 0px) scale(${scale})`,
387+
WebkitTransform: `translate3d(${x}px, ${y}px, 0px) scale(${scale})`,
388+
MozTransform: `translate3d(${x}px, ${y}px, 0px) scale(${scale})`,
389+
MsTransform: `translate3d(${x}px, ${y}px, 0px) scale(${scale})`,
390+
zIndex: i === lastPressed ? 99 : i, // TODO: Add this.props.zIndex
391+
position: 'absolute',
392392
});
393393

394394
return (

0 commit comments

Comments
 (0)