Skip to content

Commit

Permalink
fix(table): set font family (#5741)
Browse files Browse the repository at this point in the history
Fixes the font family not being set on the `md-table`.
  • Loading branch information
crisbeto authored and jelbourn committed Jul 14, 2017
1 parent 81af449 commit 5d5ce83
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib/table/_table-theme.scss
Expand Up @@ -24,7 +24,9 @@
}

@mixin mat-table-typography($config) {
$font-family: mat-font-family($config);
.mat-table {
font-family: mat-font-family($config);
}

.mat-header-cell {
font-size: mat-font-size($config, caption);
Expand Down

0 comments on commit 5d5ce83

Please sign in to comment.