Skip to content

Commit 2a59498

Browse files
committed
💄 make scaleable
and move csv export down
1 parent 3e91ec8 commit 2a59498

File tree

2 files changed

+32
-21
lines changed

2 files changed

+32
-21
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.chart {
2+
width: 100%;
3+
height: 100%;
4+
}
Lines changed: 28 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,8 @@
1-
<mat-card style="padding-bottom: 4%">
2-
<mat-card-content
3-
style="
4-
background-color: white;
5-
padding-top: 3%;
6-
padding-left: 2%;
7-
font-size: large;
8-
padding-bottom: 2%;
9-
border-bottom: 2px solid lightgray;
10-
"
11-
>
12-
Ergebnisse des Linters als .csv exportieren:
13-
<a mat-raised-button download href="{{ csvExportLink }}" color="primary"
14-
>Download</a
15-
>
16-
</mat-card-content>
17-
<mat-grid-list cols="2" rowHeight="700px" style="margin-bottom: 3%">
1+
<!-- stats -->
2+
<mat-card>
3+
<mat-grid-list cols="2" style="margin-bottom: 3%">
184
<mat-grid-tile [colspan]="1" [rowspan]="1">
19-
<mat-card-content style="width: 100%; height: 100%">
5+
<mat-card-content class="chart">
206
<div
217
fxLayout="column"
228
fxLayoutAlign="center center"
@@ -28,7 +14,7 @@
2814
</mat-card-content>
2915
</mat-grid-tile>
3016
<mat-grid-tile [colspan]="1" [rowspan]="1">
31-
<mat-card-content style="width: 100%; height: 100%">
17+
<mat-card-content class="chart">
3218
<div
3319
fxLayout="column"
3420
fxLayoutAlign="center center"
@@ -40,7 +26,7 @@
4026
</mat-card-content>
4127
</mat-grid-tile>
4228
<mat-grid-tile [colspan]="1" [rowspan]="1">
43-
<mat-card-content style="width: 100%; height: 100%">
29+
<mat-card-content class="chart">
4430
<div
4531
fxLayout="column"
4632
fxLayoutAlign="center center"
@@ -52,7 +38,7 @@
5238
</mat-card-content>
5339
</mat-grid-tile>
5440
<mat-grid-tile [colspan]="1" [rowspan]="1">
55-
<mat-card-content style="width: 100%; height: 100%">
41+
<mat-card-content class="chart">
5642
<div
5743
fxLayout="column"
5844
fxLayoutAlign="center center"
@@ -65,3 +51,24 @@
6551
</mat-grid-tile>
6652
</mat-grid-list>
6753
</mat-card>
54+
<!-- END stats -->
55+
56+
<!-- csv export -->
57+
<mat-card style="padding-bottom: 4%">
58+
<mat-card-content
59+
style="
60+
background-color: white;
61+
padding-top: 3%;
62+
padding-left: 2%;
63+
font-size: large;
64+
padding-bottom: 2%;
65+
border-bottom: 2px solid lightgray;
66+
"
67+
>
68+
Ergebnisse des Linters als .csv exportieren:
69+
<a mat-raised-button download href="{{ csvExportLink }}" color="primary"
70+
>Download</a
71+
>
72+
</mat-card-content>
73+
</mat-card>
74+
<!-- END csv export -->

0 commit comments

Comments
 (0)