We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e438717 commit 0a62604Copy full SHA for 0a62604
core/src/components/menu/menu.scss
@@ -39,6 +39,8 @@
39
.menu-inner {
40
@include transform(translateX(-9999px));
41
42
+ will-change: transform;
43
+
44
display: flex;
45
position: absolute;
46
core/src/utils/menu-controller/animations/overlay.ts
@@ -27,7 +27,6 @@ export const menuOverlayAnimation = (menu: MenuI): Animation => {
27
openedX = '0px';
28
}
29
30
- menu.menuInnerEl!.style.willChange = 'transform';
31
menuAnimation.addElement(menu.menuInnerEl!).fromTo('transform', `translateX(${closedX})`, `translateX(${openedX})`);
32
33
const mode = getIonMode(menu);
0 commit comments