Skip to content

Commit

Permalink
chore: fix buttons color
Browse files Browse the repository at this point in the history
  • Loading branch information
rxyhn committed Sep 8, 2024
1 parent 2bde074 commit 1eb2c2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Button.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const { link, text } = Astro.props;

<a
href={link}
class="mt-4 inline-flex w-auto items-center rounded-full border border-neutral-900 bg-white px-4 py-2 text-sm font-semibold text-neutral-900 backdrop-blur-xl transition-all duration-300 ease-out hover:border-neutral-300 hover:bg-black hover:text-white"
class="mt-4 inline-flex w-auto items-center rounded-full border border-neutral-950 bg-neutral-200 px-4 py-2 text-sm font-semibold text-neutral-950 backdrop-blur-xl transition-all duration-300 ease-out hover:border-neutral-200 hover:bg-neutral-950 hover:text-neutral-200"
>
{text}
</a>

0 comments on commit 1eb2c2d

Please sign in to comment.