fix: cambio minimo
This commit is contained in:
@@ -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>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user