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 8aebd03 commit 1ce49a3Copy full SHA for 1ce49a3
src/material-experimental/mdc-table/table.scss
@@ -20,3 +20,10 @@
20
.mdc-data-table__table {
21
table-layout: auto;
22
}
23
+
24
+// MDC table rows are styled with a top border, whereas our legacy flex table styles rows with
25
+// a bottom border. Remove the bottom border style from the rows and let MDC display its top
26
+// border.
27
+mat-row.mat-mdc-row, mat-header-row.mat-mdc-header-row, mat-footer-row.mat-mdc-footer-row {
28
+ border-bottom: none;
29
+}
0 commit comments