Add webkit prefixed transforms (android 4)

This commit is contained in:
homeopatchy 2016-10-31 20:29:48 +01:00
commit 2de90013f7
9 changed files with 30 additions and 1 deletions

View file

@ -8,6 +8,7 @@ action-sheet {
position: fixed;
bottom: 0;
left: 50%;
-webkit-transform: translateY(100%) translateX(-50%);
transform: translateY(100%) translateX(-50%);
transition: transform 250ms cubic-bezier(0.4, 0.0, 0.2, 1);
z-index: 100;
@ -21,6 +22,7 @@ action-sheet {
overflow: scroll;
&.slide-up {
-webkit-transform: translateY(0) translateX(-50%);
transform: translateY(0) translateX(-50%);
box-shadow: 0px 2px 13px 3px rgba(0, 0, 0, .3);
}