We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf11ff2 commit becce84Copy full SHA for becce84
src/lib/table/table.scss
@@ -1,16 +1,24 @@
1
+$mat-header-row-height: 56px;
2
$mat-row-height: 48px;
3
$mat-row-horizontal-padding: 24px;
4
5
.mat-table {
6
display: block;
7
}
8
9
+.mat-header-row {
10
+ min-height: $mat-header-row-height;
11
+}
12
+
13
+.mat-row {
14
+ min-height: $mat-row-height;
15
16
17
.mat-row, .mat-header-row {
18
display: flex;
19
border-bottom-width: 1px;
20
border-bottom-style: solid;
21
align-items: center;
- min-height: $mat-row-height;
22
padding: 0 $mat-row-horizontal-padding;
23
24
0 commit comments