diff --git a/frontend/src/app/globals.css b/frontend/src/app/globals.css index 8a1995c..cf624ab 100644 --- a/frontend/src/app/globals.css +++ b/frontend/src/app/globals.css @@ -660,14 +660,16 @@ body { background: linear-gradient(90deg, rgba(255, 115, 81, 0.42), #ff7351); transform-origin: left center; } -.stats-rejection-note { - margin: 10px 0 0; - padding-top: 10px; +.stats-rejection-panel .stats-rejection-note { + margin: 12px auto 0; + padding: 10px 12px 0; border-top: 1px solid rgba(255, 255, 255, 0.07); - color: var(--muted-2); - font-size: 11.5px; - font-weight: 800; + color: #ffe22f; + font-size: 12px; + font-weight: 900; line-height: 1.3; + text-align: center; + text-shadow: 0 0 18px rgba(255, 226, 47, 0.18); } .stats-yield-panel { min-height: 176px; diff --git a/frontend/src/components/statistics/applications-statistics-client.tsx b/frontend/src/components/statistics/applications-statistics-client.tsx index 2a6894b..85f192b 100644 --- a/frontend/src/components/statistics/applications-statistics-client.tsx +++ b/frontend/src/components/statistics/applications-statistics-client.tsx @@ -603,9 +603,7 @@ function ApplicationSankey({ animate={{ pathLength: 1 }} transition={{ duration: 0.75, ease: PANEL_EASE }} > - - {link.label}: {link.value} - + {`${link.label}: ${link.value}`} ); })}