feat(insight): add tracking for lines and files in analysis and enhance stats display

This commit is contained in:
DragonnZhang 2026-02-06 13:02:48 +08:00
parent aeedec3020
commit 754125e75c
4 changed files with 342 additions and 108 deletions

View file

@ -1036,4 +1036,33 @@ body {
.fun-detail {
font-size: 14px;
color: #92400e;
}
}
/* Stats Row Styles */
.stats-row {
display: flex;
gap: 24px;
margin-bottom: 40px;
padding: 20px 0;
border-top: 1px solid #e2e8f0;
border-bottom: 1px solid #e2e8f0;
flex-wrap: wrap;
}
.stat {
text-align: center;
}
.stat-value {
font-size: 24px;
font-weight: 700;
color: #0f172a;
}
.stat-label {
font-size: 11px;
color: #64748b;
text-transform: uppercase;
}
@media (max-width: 640px) {
.stats-row {
justify-content: center;
}
}