Add webkit prefixed transforms (android 4)
This commit is contained in:
parent
f4017f5a7f
commit
2de90013f7
9 changed files with 30 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue