Skip to content

Commit 4196f69

Browse files
committed
feat: add hover effect for opensource buttons
1 parent 66b773c commit 4196f69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/components/HomePage/OpenSource.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ const contributorsCount = computed(() => contributorsData.value?.length ?? 0)
3232
>
3333
<Button
3434
@click="openLink('https://github.com/ValoryApp/Valory/forks')"
35-
class="gap-1 border border-white/10 bg-[#19191A] px-3 text-[#F2F2F2]"
35+
class="gap-1 border border-white/10 bg-[#19191A] px-3 text-[#F2F2F2] hover:border-white"
3636
>
3737
<GitBranch01 :size="22" />
3838
{{ forksCount }}
3939
</Button>
4040
<Button
4141
@click="openLink('https://github.com/ValoryApp/Valory/stargazers')"
42-
class="gap-1 border border-white/10 bg-[#19191A] px-3 text-[#F2F2F2]"
42+
class="gap-1 border border-white/10 bg-[#19191A] px-3 text-[#F2F2F2] hover:border-white"
4343
>
4444
<Star01 color="#E3B341" :size="22" />
4545
{{ starsCount }}

0 commit comments

Comments
 (0)