Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: highlight footer elements #39

Merged
merged 2 commits into from
Sep 14, 2024
Merged
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
12 changes: 6 additions & 6 deletions website/app/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,30 +11,30 @@ const Footer = () => {
<ExternalLink
title="Miguel Solorio"
href="https://www.miguelsolorio.com/"
className="group flex items-center space-x-2 transition-colors hover:text-white hover:decoration-white"
className="group flex items-center space-x-2 transition-colors hover:text-white"
>
<span className="hidden md:block">Icons crafted by </span>
<img
className="h-6 w-6 rounded-full transition-all group-hover:ring-2 group-hover:ring-zinc-500"
className="h-6 w-6 rounded-full transition-shadow group-hover:ring-2 group-hover:ring-react-symbol-pink"
src="https://avatars.githubusercontent.com/u/35271042?v=4"
alt="Miguel Solorio"
/>
<span className="underline decoration-zinc-500 decoration-wavy underline-offset-[4px]">
<span className="underline decoration-zinc-500 decoration-wavy underline-offset-[4px] group-hover:decoration-react-symbol-pink">
Miguel Solorio
</span>
</ExternalLink>
<ExternalLink
title="Pablo Hernández"
href="https://pheralb.dev"
className="group flex items-center space-x-2 transition-colors hover:text-white hover:decoration-white"
className="group flex items-center space-x-2 transition-colors hover:text-white"
>
<span className="hidden md:block">Website by</span>
<img
className="h-6 w-6 rounded-full transition-all group-hover:ring-2 group-hover:ring-zinc-500"
className="h-6 w-6 rounded-full transition-shadow group-hover:ring-2 group-hover:ring-react-symbol-aqua"
src="https://avatars.githubusercontent.com/u/62877300?v=4"
alt="Pablo Hernández"
/>
<span className="underline decoration-zinc-500 decoration-wavy underline-offset-[4px]">
<span className="underline decoration-zinc-500 decoration-wavy underline-offset-[4px] group-hover:decoration-react-symbol-aqua">
Pablo Hernández
</span>
</ExternalLink>
Expand Down
5 changes: 4 additions & 1 deletion website/tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ const config: Config = {
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
colors: {},
colors: {
'react-symbol-pink': '#c084fc',
'react-symbol-aqua': '#22d3ee',
},
},
},
plugins: [twAnimate],
Expand Down