Skip to content

Commit db0eb31

Browse files
Gabrielandrewseguin
Gabriel
authored andcommitted
fix(table): set height of mat-header-row to 56px (#8215)
1 parent 3e9cb8e commit db0eb31

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/lib/table/table.scss

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,24 @@
1+
$mat-header-row-height: 56px;
12
$mat-row-height: 48px;
23
$mat-row-horizontal-padding: 24px;
34

45
.mat-table {
56
display: block;
67
}
78

9+
.mat-header-row {
10+
min-height: $mat-header-row-height;
11+
}
12+
13+
.mat-row {
14+
min-height: $mat-row-height;
15+
}
16+
817
.mat-row, .mat-header-row {
918
display: flex;
1019
border-bottom-width: 1px;
1120
border-bottom-style: solid;
1221
align-items: center;
13-
min-height: $mat-row-height;
1422
padding: 0 $mat-row-horizontal-padding;
1523
}
1624

0 commit comments

Comments
 (0)