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

Fixes #408 GitHub footer icon colour fixed #409

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/lib/components/footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
data-test-id="github-btn"
target="_blank"
rel="noreferrer"
class="transition duration-200 hover:text-[#333333] active:text-primary-100 dark:hover:text-[#fafafa]"
class="transition duration-200 hover:text-[#ffffff] active:text-primary-100"
href="http://github.eddiehub.org"
aria-label="Github"><i class="fa-brands fa-github fa-xl" title="Github" /></a
>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/index/github-card.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

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