Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
fix: adjust color of github hover (#363)
Browse files Browse the repository at this point in the history
  • Loading branch information
rahul0x00 authored Jul 12, 2023
1 parent 746d525 commit 65f0006
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/lib/components/index/github-card.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
/>
</svg>
<div class="flex flex-col items-center justify-center gap-4 transition duration-200">
<h3 class="text-xl font-bold text-skin-text-highlight ">GitHub</h3>
<h3 class="text-xl font-bold text-skin-text-highlight">GitHub</h3>
<p class="px-8 text-center">a platform for hosting software projects</p>
</div>
</a>

<style lang="postcss">
.card:hover::before {
@apply absolute -z-10 h-[500px] w-[100px] bg-[#24292f];
@apply absolute -z-10 h-[500px] w-[100px] bg-[#000000];
content: '';
animation: animate-circle 5s linear infinite;
}
Expand Down

0 comments on commit 65f0006

Please sign in to comment.