mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-30 20:50:34 +00:00
feat(insight): add tracking for lines and files in analysis and enhance stats display
This commit is contained in:
parent
aeedec3020
commit
754125e75c
4 changed files with 342 additions and 108 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue