Skip to content

Commit

Permalink
feat(itemReorder): animate reorder button
Browse files Browse the repository at this point in the history
  • Loading branch information
mhartington committed Aug 10, 2016
1 parent 174efc1 commit 1f78487
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/components/item/item-reorder.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// --------------------------------------------------

ion-reorder {
display: none;
display: flex;

flex: 1;
align-items: center;
Expand All @@ -15,6 +15,10 @@ ion-reorder {
font-size: 1.45em;
opacity: .5;

transform: translate3d(120%, 0, 0);

transition: transform 125ms ease-in;

pointer-events: all;
touch-action: manipulation;

Expand All @@ -33,7 +37,8 @@ ion-reorder {
}

ion-reorder {
display: flex;
transform: translate3d(0, 0, 0);

}
}

Expand Down

0 comments on commit 1f78487

Please sign in to comment.