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 e4e08d1 commit 6470da8Copy full SHA for 6470da8
src/lib/table/table.scss
@@ -20,6 +20,15 @@ $mat-row-horizontal-padding: 24px;
20
border-bottom-style: solid;
21
align-items: center;
22
padding: 0 $mat-row-horizontal-padding;
23
+
24
+ // Workaround for https://goo.gl/pFmjJD in IE 11. Adds a pseudo
25
+ // element that will stretch the row the correct height. See:
26
+ // https://connect.microsoft.com/IE/feedback/details/802625
27
+ &::after {
28
+ display: inline-block;
29
+ min-height: inherit;
30
+ content: '';
31
+ }
32
}
33
34
.mat-cell, .mat-header-cell {
0 commit comments