Skip to content

Commit

Permalink
fix: make text color match blog
Browse files Browse the repository at this point in the history
  • Loading branch information
rexdotsh committed Dec 7, 2024
1 parent 42d6aea commit 4a13975
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Art/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const Navigation: Component = () => {
return (
<nav class="flex flex-col md:flex-row items-center gap-6 md:gap-12 mt-16 md:mt-12">
{links.map(({href, text}) => (
<a href={href} class="text-lg md:text-2xl md:my-12 text-white font-bold hover:text-rose-400/80 transition-colors">
<a href={href} class="text-lg md:text-2xl md:my-12 text-[#d6e9ef] font-bold hover:text-rose-400/80 transition-colors">
{text}
</a>
))}
Expand Down

0 comments on commit 4a13975

Please sign in to comment.