File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed
src/material-experimental/popover-edit Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -219,7 +219,12 @@ class ElementDataSource extends DataSource<PeriodicElement> {
219219 <mat-row *matRowDef="let row; columns: displayedColumns;"></mat-row>
220220 </mat-table>
221221 </div>
222- `
222+ ` ,
223+ styles : [ `
224+ mat-table {
225+ margin: 16px;
226+ }
227+ ` ]
223228} )
224229class MatFlexTableInCell extends BaseTestComponent {
225230 displayedColumns = [ 'before' , 'name' , 'weight' ] ;
@@ -265,7 +270,12 @@ class MatFlexTableInCell extends BaseTestComponent {
265270 <tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
266271 </table>
267272 <div>
268- `
273+ ` ,
274+ styles : [ `
275+ table {
276+ margin: 16px;
277+ }
278+ ` ]
269279} )
270280class MatTableInCell extends BaseTestComponent {
271281 displayedColumns = [ 'before' , 'name' , 'weight' ] ;
You can’t perform that action at this time.
0 commit comments