Skip to content

Commit 298387c

Browse files
committed
increased size of font and color #127
Also upgraded deps
1 parent fc9c589 commit 298387c

File tree

6 files changed

+2027
-1426
lines changed

6 files changed

+2027
-1426
lines changed

html-report/ui/build/static/bundle.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

html-report/ui/build/static/bundle.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

html-report/ui/src/components/charts/Pie.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,9 @@ export function PieChart(props: PieChartProps) {
4848
maxHeight: 40,
4949
labels: {
5050
usePointStyle: true,
51+
color: 'rgb(255, 255, 255)',
5152
font: {
52-
size: 8,
53+
size: 10,
5354
family: "Menlo, Monaco, Roboto Mono, Lucida Console, Liberation Mono"
5455
}
5556
}

html-report/ui/src/components/report-statistics/ReportContainer.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.chart-container {
22
margin-right: 40px;
3-
height: 165px;
4-
width: 175px;
3+
height: 200px;
4+
width: 200px;
55
}
66

77
.report-container {
@@ -12,7 +12,7 @@
1212
}
1313

1414
.report-summary {
15-
width: calc(100vw - 643px);
15+
width: calc(100vw - 743px);
1616
}
1717

1818
.report-summary-stats {

html-report/ui/src/components/report-statistics/ReportContainer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const ReportContainer: React.FC = () => {
1818

1919
const overallChanges = [
2020
{
21-
type: "Modifications",
21+
type: "Modified",
2222
value: stats.modified
2323
},
2424
{
@@ -32,7 +32,7 @@ export const ReportContainer: React.FC = () => {
3232
];
3333
const breakingChanges = [
3434
{
35-
type: "Modifications",
35+
type: "Modified",
3636
value: stats.breakingModified
3737
},
3838
{

0 commit comments

Comments
 (0)