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 96e670f commit 40fb5cbCopy full SHA for 40fb5cb
src/lib/stepper/stepper.scss
@@ -107,7 +107,9 @@ $mat-stepper-line-gap: 8px !default;
107
display: flex;
108
align-items: center;
109
padding: $mat-stepper-side-gap;
110
- max-height: $mat-stepper-label-header-height;
+
111
+ // We can't use `max-height` here, because it breaks the flexbox centering in IE.
112
+ height: $mat-stepper-label-header-height;
113
114
.mat-step-icon {
115
margin-right: $mat-vertical-stepper-content-margin - $mat-stepper-side-gap;
0 commit comments