Skip to content
Merged
14 changes: 8 additions & 6 deletions frontend/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -603,9 +603,7 @@ function ApplicationSankey({
animate={{ pathLength: 1 }}
transition={{ duration: 0.75, ease: PANEL_EASE }}
>
<title>
{link.label}: {link.value}
</title>
<title>{`${link.label}: ${link.value}`}</title>
</motion.path>
);
})}
Expand Down
Loading