fix: cambio minimo

This commit is contained in:
Alexis
2026-03-27 13:55:55 +01:00
parent 46250af1eb
commit 07f1fd9ebc
@@ -79,20 +79,20 @@ const Step3FinalGraph = ({ data }) => {
{/* Leyenda */} {/* Leyenda */}
<div className="flex flex-wrap justify-center gap-x-8 gap-y-3 mt-6 pb-2"> <div className="flex flex-wrap justify-center gap-x-8 gap-y-3 mt-6 pb-2">
{sortedResults.map((item) => ( {sortedResults.map((item) => (
<div key={`legend-${item.term}`} className="flex items-center gap-2"> <div key={`legend-${item.term}`} className="flex items-center gap-2">
<span <span
className="w-3.5 h-3.5 rounded-full shadow-sm" className="w-3.5 h-3.5 rounded-full shadow-sm"
style={{ backgroundColor: item.color }} style={{ backgroundColor: item.color }}
/> />
<span <span
className="text-sm font-medium uppercase tracking-wide" className="text-sm font-medium uppercase tracking-wide"
style={{ color: item.color }} style={{ color: item.color }}
> >
{item.term} {item.term}
</span> </span>
</div> </div>
))} ))}
</div> </div>