Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewseguin authored Jan 12, 2018
1 parent 30248ce commit 82281ec
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/lib/table/table.scss
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
$mat-header-row-height: 56px;
$mat-row-height: 48px;
$mat-row-horizontal-padding: 24px;

.mat-table {
display: block;
}

.mat-header-row {
min-height: $mat-header-row-height;
}

.mat-row {
min-height: $mat-row-height;
}

.mat-row, .mat-header-row {
display: flex;
border-bottom-width: 1px;
border-bottom-style: solid;
align-items: center;
min-height: $mat-row-height;
padding: 0 $mat-row-horizontal-padding;
box-sizing: border-box;

Expand Down

0 comments on commit 82281ec

Please sign in to comment.