Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h3 class="text-lg font-semibold">{{ workflow.label }}</h3>
@for (tool of workflow.tools; track tool.id) {
<li>
<span
class="inline-flex items-center px-3 py-1 text-xs font-mono font-semibold border rounded-full"
class="inline-flex items-center px-2 py-1 text-xs font-mono font-semibold border rounded-full"
[class]="
tool.disabled
? 'bg-gray-100 text-gray-400 border-gray-400'
Expand All @@ -51,10 +51,10 @@ <h3 class="text-lg font-semibold">{{ workflow.label }}</h3>
}

<div
class="flex justify-start items-center gap-1 text-sm font-semibold text-biocommons-primary transition-colors group-hover:text-sky-700"
class="flex justify-start items-center gap-1 text-sm font-semibold text-sky-600 transition-colors group-hover:text-sky-700"
>
Launch workflow
<ng-icon name="heroChevronRight" size="16" />
View workflow
<ng-icon name="heroChevronRight" size="12" class="mt-0.5" />
</div>
</a>
}
Expand Down