Skip to content

Commit

Permalink
chore: improve link color
Browse files Browse the repository at this point in the history
  • Loading branch information
owlnai committed Oct 25, 2021
1 parent 0fa464a commit fbaf2b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/Card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ function color(status) {
<h2 class="font-semibold text-2xl">{{ title }}</h2>
<p class="text-sm">
<a
class="text-nuxt-mountain hover:underline"
:href="'https://github.com/' + maintainer.replace('@', '')"
v-for="(maintainer, index) in maintainers.split(', ')"
v-if="maintainers"
Expand Down Expand Up @@ -65,7 +66,7 @@ function color(status) {
</div>
</div>
<div class="flex justify-between p-4 bg-nuxt-grass dark:bg-nuxt-space rounded-b-md">
<a class="text-sm items-center inline-flex gap-2" :href="repoUrl" v-if="repoUrl">
<a class="text-sm items-center inline-flex gap-2 hover:underline" :href="repoUrl" v-if="repoUrl">
<GitHub class="h-5 w-5" />
{{ repoUrl.split(".com/").pop() }}
</a>
Expand Down

0 comments on commit fbaf2b4

Please sign in to comment.