Fix css transform for android 4.4.2 webview

This commit is contained in:
pablovidal85 2017-05-03 12:40:19 +02:00
commit b4dbdb7ac4
4 changed files with 17 additions and 0 deletions

View file

@ -152,6 +152,7 @@
position: absolute;
width: 100%;
height: 500px;
-webkit-transform: translateY(-499px);
transform: translateY(-499px);
&.collapsible {
@ -161,6 +162,7 @@
position: absolute;
width: 100%;
height: 200px;
-webkit-transform: translateY(100px);
transform: translateY(100px);
}
}
@ -180,6 +182,7 @@
}
&__balance {
-webkit-transform: scale3d(1, 1, 1) translateY(45px);
transform: scale3d(1, 1, 1) translateY(45px);
}