Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web-codegen-scorer",
"version": "0.0.23",
"version": "0.0.24",
"scripts": {
"build-runner": "tsc",
"release-build": "tsx ./scripts/release-build.ts",
Expand Down
8 changes: 4 additions & 4 deletions report-app/src/app/pages/report-viewer/report-viewer.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ <h3>Runner</h3>
<div class="charts-grid">
<div class="chart-container build-results-details">
<h3 class="chart-title">
<span class="material-symbols-outlined"> build </span>
<span class="material-symbols-outlined">build</span>
<span>Build</span>
</h3>
<div class="summary-card-item">
Expand All @@ -76,7 +76,7 @@ <h3 class="chart-title">
@if (overview.stats.tests) {
<div class="chart-container test-results-details">
<h3 class="chart-title">
<span class="material-symbols-outlined"> quiz </span>
<span class="material-symbols-outlined">assignment</span>
<span>Tests</span>
</h3>
<div class="summary-card-item">
Expand All @@ -87,7 +87,7 @@ <h3 class="chart-title">
@if (overview.stats.runtime) {
<div class="chart-container">
<h3 class="chart-title">
<span class="material-symbols-outlined"> schedule </span>
<span class="material-symbols-outlined">schedule</span>
<span>Runtime</span>
</h3>
<div class="summary-card-item">
Expand All @@ -101,7 +101,7 @@ <h3 class="chart-title">
@if (overview.stats.security) {
<div class="chart-container">
<h3 class="chart-title">
<span class="material-symbols-outlined"> security </span>
<span class="material-symbols-outlined">security</span>
<span>Security</span>
</h3>
<div class="summary-card-item">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
font-weight: 500;
transition: filter 0.2s ease-in-out;
min-width: 50px;
user-select: none;

&:first-child {
border-top-left-radius: 8px;
Expand Down
2 changes: 1 addition & 1 deletion report-app/src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
--status-fill-great: #84cc16;
--status-fill-good: #f59e0b;
--status-fill-poor: #ef4444;
--status-fill-neutral: #eff6ff;
--status-fill-neutral: #aaa;

--status-text-excellent: #0c855d;
--status-text-great: #0c855d; // TODO: do we want to differentiate from `excellent`?
Expand Down
Loading