Skip to content

Commit

Permalink
edit tech stack component to be blue bg
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkershaw committed Sep 9, 2024
1 parent 6addd3c commit 35295de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/my-tech-stack.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,15 @@ function MyTechStack() {
{technologies.map((item, index) => (
<div
key={index}
className="card border border-neutral-300 rounded-lg p-10 max-w-30"
className="card border text-neutral-100 border-neutral-300 rounded-lg p-10 max-w-30 bg-ykb hover:bg-ykbdark active:bg-ykblight"
>
<a
href={item.href}
target="_blank"
className="flex flex-col items-center justify-between text-center no-underline"
>
<span
className={`${item.svg} w-10 h-10 cursor-pointer text-neutral-900 hover:text-ykb active:text-ykblight`}
className={`${item.svg} w-10 h-10 cursor-pointer `}
></span>
<p className="text-sm mt-2 ">{item.name}</p>
</a>
Expand Down

0 comments on commit 35295de

Please sign in to comment.