allow user to cancel a transaction when using the slide to pay component

This commit is contained in:
Marty Alcala 2016-10-10 14:33:55 -04:00
commit 34566e13a7
3 changed files with 20 additions and 12 deletions

View file

@ -93,9 +93,9 @@ slide-to-accept {
text-transform: capitalize;
transform: translateY(2rem);
opacity: 0;
transition: transform 250ms ease, opacity 250ms ease;
&.enter {
transition: transform 250ms ease, opacity 250ms ease;
transform: translateY(0);
opacity: 1;
}