We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 155a15d commit bf9dcc0Copy full SHA for bf9dcc0
2 files changed
src/app/pages/mapping/mapping.component.css
@@ -21,6 +21,10 @@
21
min-width: 140px;
22
}
23
24
+.matrix-table {
25
+ margin: 20px;
26
+}
27
+
28
.mat-table-container {
29
margin: 20px;
30
overflow-x: auto;
src/app/pages/mapping/mapping.component.html
@@ -32,7 +32,7 @@
32
</div>
33
34
<div class="mat-table-container">
35
- <table mat-table matSort [dataSource]="dataSource" class="mat-elevation-z8">
+ <table mat-table matSort [dataSource]="dataSource" class="mat-elevation-z8 matrix-table">
36
<ng-container matColumnDef="dimension">
37
<th mat-header-cell mat-sort-header *matHeaderCellDef>Dimension</th>
38
<td mat-cell *matCellDef="let element">{{ element.dimension }}</td>
0 commit comments