Skip to content

Commit

Permalink
Radio & Checkbox: replace cubic-bezier with ease-in (#11331)
Browse files Browse the repository at this point in the history
  • Loading branch information
jikkai authored and Leopoldthecoder committed May 25, 2018
1 parent 2445a7b commit 8ac9467
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/theme-chalk/src/checkbox.scss
Expand Up @@ -217,7 +217,7 @@
top: 1px;
transform: rotate(45deg) scaleY(0);
width: 3px;
transition: transform .15s cubic-bezier(.71,-.46,.88,.6) .05s;
transition: transform .15s ease-in .05s;
transform-origin: center;
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/theme-chalk/src/radio.scss
Expand Up @@ -169,7 +169,7 @@
left: 50%;
top: 50%;
transform: translate(-50%, -50%) scale(0);
transition: transform .15s cubic-bezier(.71,-.46,.88,.6);
transition: transform .15s ease-in;
}
}

Expand Down

0 comments on commit 8ac9467

Please sign in to comment.