From e8281e779418ba15a709fa3602de394b211c0bda Mon Sep 17 00:00:00 2001 From: Timothy Russo Date: Tue, 5 Sep 2023 09:06:23 +0200 Subject: [PATCH] feat: update colors --- src/app/tech-stack/components/TechStackCard.tsx | 6 +++--- src/app/tech-stack/components/TechStackContainer.tsx | 2 +- src/components/Avatar.tsx | 2 +- src/components/EditButton.tsx | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/tech-stack/components/TechStackCard.tsx b/src/app/tech-stack/components/TechStackCard.tsx index 07029b22..2b1c33a9 100644 --- a/src/app/tech-stack/components/TechStackCard.tsx +++ b/src/app/tech-stack/components/TechStackCard.tsx @@ -8,15 +8,15 @@ interface TechStackCardProps { export default function TechStackCard({ title, data }: TechStackCardProps) { return ( -
+
-

+

{title}

-
    +
      {data.map((element) => (
    • +
        {Object.keys(techStack).map((cardType, index) => (
      • +
        ); diff --git a/src/components/EditButton.tsx b/src/components/EditButton.tsx index 2bcdc862..94885b63 100644 --- a/src/components/EditButton.tsx +++ b/src/components/EditButton.tsx @@ -8,7 +8,7 @@ export default function EditButton({ title }: EditButtonProps) { return (