release: 2026-03-16 (81건 커밋) #93

병합
jhkang develop 에서 main 로 30 commits 를 머지했습니다 2026-03-16 18:36:00 +09:00
Showing only changes of commit 9386c1e29a - Show all commits

파일 보기

@ -218,10 +218,10 @@ export function RightPanel({ onOpenBacktrack, onOpenRecalc, onOpenReport, detail
{/* 확산 예측 요약 */}
<Section title="확산 예측 요약 (+18h)" badge="위험" badgeColor="red">
<div className="grid grid-cols-2 gap-0.5">
<div className="grid grid-cols-2 gap-0.5 text-[9px]">
<PredictionCard value="4.7 km²" label="영향 면적" color="var(--red)" />
<PredictionCard value="6.2 km" label="최대 확산 거리" color="var(--orange)" />
<PredictionCard value="NE 42°" label="확산 방향" color="var(--cyan)" />
<PredictionCard value="6.2 km" label="확산 거리" color="var(--orange)" />
<PredictionCard value="NE 42°" label="확산 방향" color="var(--cyan)" />
<PredictionCard value="0.35 m/s" label="확산 속도" color="var(--t1)" />
</div>
</Section>
@ -421,16 +421,9 @@ function StatBox({
function PredictionCard({ value, label, color }: { value: string; label: string; color: string }) {
return (
<div className="text-center py-[5px] px-1 bg-bg-0 border border-border rounded-[3px]">
<div
style={{ color }}
className="text-xs font-extrabold font-mono"
>
{value}
</div>
<div className="text-[7px] text-text-3 font-korean">
{label}
</div>
<div className="flex justify-between px-2 py-1 bg-bg-0 border border-border rounded-[3px] text-[9px]">
<span className="text-text-3 font-korean">{label}</span>
<span style={{ fontWeight: 700, color, fontFamily: 'var(--fM)' }}>{value}</span>
</div>
)
}