Improve UI/UX Consistency

This commit is contained in:
Dries Augustyns
2025-12-06 10:06:11 +01:00
parent 903ea73ca2
commit b2ecf60a13
9 changed files with 185 additions and 189 deletions
+3 -3
View File
@@ -220,9 +220,9 @@ export default function WorkflowsPage() {
onClick={() => handleToggleEnabled(workflow.id, workflow.enabled)}
>
{workflow.enabled ? (
<PowerOff className="h-4 w-4 text-orange-600" />
<PowerOff className="h-4 w-4" />
) : (
<Power className="h-4 w-4 text-green-600" />
<Power className="h-4 w-4" />
)}
</Button>
<Link href={`/workflows/${workflow.id}`}>
@@ -238,7 +238,7 @@ export default function WorkflowsPage() {
setShowDeleteDialog(true);
}}
>
<Trash2 className="h-4 w-4 text-red-600" />
<Trash2 className="h-4 w-4" />
</Button>
</div>
</div>