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 303e004 commit 1b79e92Copy full SHA for 1b79e92
src/lib/table/table.scss
@@ -12,6 +12,15 @@ $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. See:
18
+ // https://connect.microsoft.com/IE/feedback/details/802625
19
+ &::after {
20
+ display: inline-block;
21
+ min-height: inherit;
22
+ content: '';
23
+ }
24
}
25
26
.mat-cell, .mat-header-cell {
0 commit comments