diff --git a/src/material-experimental/mdc-autocomplete/animations.ts b/src/material-experimental/mdc-autocomplete/animations.ts index be05328e2a38..a10b3153b260 100644 --- a/src/material-experimental/mdc-autocomplete/animations.ts +++ b/src/material-experimental/mdc-autocomplete/animations.ts @@ -22,12 +22,12 @@ import { export const panelAnimation: AnimationTriggerMetadata = trigger('panelAnimation', [ state('void, hidden', style({ opacity: 0, - transform: 'scale(0.8)', + transform: 'scaleY(0.8)', })), transition(':enter, hidden => visible', [ group([ - animate('0.03s linear', style({ opacity: 1 })), - animate('0.12s cubic-bezier(0, 0, 0.2, 1)', style({ transform: 'scale(1)' })), + animate('0.03s linear', style({ opacity: 1 })), + animate('0.12s cubic-bezier(0, 0, 0.2, 1)', style({ transform: 'scaleY(1)' })), ]), ]), transition(':leave, visible => hidden', [