Skip to content

Commit 55f7882

Browse files
authored
fix(material-experimental/mdc-table): reset table layout (#20364)
1 parent 06a9843 commit 55f7882

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/material-experimental/mdc-table/table.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,9 @@
77
.mat-table-sticky {
88
@include vendor-prefixes.position-sticky;
99
}
10+
11+
// MDC Table applies `table-layout: fixed`, but this is a backwards incompatible
12+
// change since the table did not previously apply it.
13+
.mdc-data-table__table {
14+
table-layout: auto;
15+
}

0 commit comments

Comments
 (0)