Skip to content

Commit

Permalink
feat: add hover effect to links
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrer committed Jul 26, 2024
1 parent faacc67 commit 0dc7d83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/workflows/timeline/TimelineItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ function getStepUrl(step: WorkflowStep) {
>
<div class="flex flex-col pt-2">

<a v-if="selectedStepUrl" class="font-bold px-2 pb-2 mb-2 border-b border-gray-300 flex items-center" :href="selectedStepUrl" target="_blank">
<a v-if="selectedStepUrl" class="font-bold px-2 pb-2 mb-2 border-b border-gray-300 flex items-center hover:underline underline-offset-2" :href="selectedStepUrl" target="_blank">
<Icon icon="mdi:github" class="text-2xl mr-1"/>
<span class="">{{ selectedStep?.id }}</span>
</a>
Expand Down

0 comments on commit 0dc7d83

Please sign in to comment.