Skip to content

Commit ea0f75c

Browse files
authored
Merge pull request #39 from david-ponc/feature/highlight-footer-elements
feat: highlight footer elements
2 parents 879b0fa + 03c3c14 commit ea0f75c

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

website/app/components/footer.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,30 +11,30 @@ const Footer = () => {
1111
<ExternalLink
1212
title="Miguel Solorio"
1313
href="https://www.miguelsolorio.com/"
14-
className="group flex items-center space-x-2 transition-colors hover:text-white hover:decoration-white"
14+
className="group flex items-center space-x-2 transition-colors hover:text-white"
1515
>
1616
<span className="hidden md:block">Icons crafted by </span>
1717
<img
18-
className="h-6 w-6 rounded-full transition-all group-hover:ring-2 group-hover:ring-zinc-500"
18+
className="h-6 w-6 rounded-full transition-shadow group-hover:ring-2 group-hover:ring-react-symbol-pink"
1919
src="https://avatars.githubusercontent.com/u/35271042?v=4"
2020
alt="Miguel Solorio"
2121
/>
22-
<span className="underline decoration-zinc-500 decoration-wavy underline-offset-[4px]">
22+
<span className="underline decoration-zinc-500 decoration-wavy underline-offset-[4px] group-hover:decoration-react-symbol-pink">
2323
Miguel Solorio
2424
</span>
2525
</ExternalLink>
2626
<ExternalLink
2727
title="Pablo Hernández"
2828
href="https://pheralb.dev"
29-
className="group flex items-center space-x-2 transition-colors hover:text-white hover:decoration-white"
29+
className="group flex items-center space-x-2 transition-colors hover:text-white"
3030
>
3131
<span className="hidden md:block">Website by</span>
3232
<img
33-
className="h-6 w-6 rounded-full transition-all group-hover:ring-2 group-hover:ring-zinc-500"
33+
className="h-6 w-6 rounded-full transition-shadow group-hover:ring-2 group-hover:ring-react-symbol-aqua"
3434
src="https://avatars.githubusercontent.com/u/62877300?v=4"
3535
alt="Pablo Hernández"
3636
/>
37-
<span className="underline decoration-zinc-500 decoration-wavy underline-offset-[4px]">
37+
<span className="underline decoration-zinc-500 decoration-wavy underline-offset-[4px] group-hover:decoration-react-symbol-aqua">
3838
Pablo Hernández
3939
</span>
4040
</ExternalLink>

website/tailwind.config.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ const config: Config = {
2121
md: "calc(var(--radius) - 2px)",
2222
sm: "calc(var(--radius) - 4px)",
2323
},
24-
colors: {},
24+
colors: {
25+
'react-symbol-pink': '#c084fc',
26+
'react-symbol-aqua': '#22d3ee',
27+
},
2528
},
2629
},
2730
plugins: [twAnimate],

0 commit comments

Comments
 (0)