refactor: add text-black color to NodeSteps circle numbers for better contrast

- Added text-black class to step number circles to ensure proper text visibility against white background
This commit is contained in:
2025-11-18 14:53:18 +01:00
parent 9b2c406e9e
commit 252e2335c2

View File

@@ -65,7 +65,7 @@ export function NodeSteps() {
<div className="relative flex flex-col items-center"> <div className="relative flex flex-col items-center">
{/* Circle */} {/* Circle */}
<div className="w-10 h-10 bg-white border border-gray-300 rounded-full shadow-sm flex items-center justify-center z-10"> <div className="w-10 h-10 text-black bg-white border border-gray-300 rounded-full shadow-sm flex items-center justify-center z-10">
{i + 1} {i + 1}
</div> </div>