Skip to content

Commit 09c6386

Browse files
crisbetokara
authored andcommitted
fix(select): animation jump in Chrome and blurry text in IE (#3328)
Fixes #3327. Fixes #1953.
1 parent 7a40ec7 commit 09c6386

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/select/select-animations.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ export const transformPanel: AnimationEntryMetadata = trigger('transformPanel',
4646
state('showing', style({
4747
opacity: 1,
4848
minWidth: 'calc(100% + 32px)',
49-
transform: `translate3d(0,0,0) scaleY(1)`
49+
transform: `scaleY(1)`
5050
})),
5151
transition('void => *', [
5252
style({
5353
opacity: 0,
5454
minWidth: '100%',
55-
transform: `translate3d(0, 0, 0) scaleY(0)`
55+
transform: `scaleY(0)`
5656
}),
5757
animate(`150ms cubic-bezier(0.25, 0.8, 0.25, 1)`)
5858
]),

0 commit comments

Comments
 (0)