Skip to content

Commit

Permalink
Merge pull request #39 from david-ponc/feature/highlight-footer-elements
Browse files Browse the repository at this point in the history
feat: highlight footer elements
  • Loading branch information
pheralb authored Sep 14, 2024
2 parents 879b0fa + 03c3c14 commit ea0f75c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
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

0 comments on commit ea0f75c

Please sign in to comment.