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 1b6b270 commit f1cd91cCopy full SHA for f1cd91c
src/lib/table/table.scss
@@ -12,6 +12,14 @@ $mat-row-horizontal-padding: 24px;
12
align-items: center;
13
min-height: $mat-row-height;
14
padding: 0 $mat-row-horizontal-padding;
15
+
16
+ // Workaround for https://goo.gl/pFmjJD in IE 11. Adds a pseudo
17
+ // element that will stretch the row the correct height.
18
+ &::after {
19
+ display: inline-block;
20
+ min-height: $mat-row-height;
21
+ content: '';
22
+ }
23
}
24
25
.mat-cell, .mat-header-cell {
0 commit comments