We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a58c725 commit 52fea06Copy full SHA for 52fea06
src/material/form-field/form-field.scss
@@ -166,7 +166,8 @@ $mat-form-field-default-infix-width: 180px !default;
166
// with their top at x.6 would disappear, but ones with there top at x.7 were fine). The exact
167
// fractions that caused problems seemed to depend on the screen resolution and zoom level. We
168
// experimentally discovered that adding a very slight scale factor fixes the issue.
169
- transform: scaleY(1.0001);
+ // `scale3d` must be used rather than `scaleY`, as `scaleY` causes a jitter effect in Chrome.
170
+ transform: scale3d(1, 1.0001, 1);
171
}
172
173
.mat-form-field-ripple {
0 commit comments