From ba7abb90c4a1a1a5bf2bd56d3563c13e74310c57 Mon Sep 17 00:00:00 2001 From: Maruf Bepary Date: Fri, 7 Jul 2023 18:13:45 +0100 Subject: [PATCH 1/2] Added extra tech to Noodle stack --- types/projects.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/projects.ts b/types/projects.ts index c9afc68c..e21fbe0a 100644 --- a/types/projects.ts +++ b/types/projects.ts @@ -121,8 +121,10 @@ const extraWebDevProjects: Project[] = [ `NextAuth`, `MySQL`, "tRPC", + "Prisma", "Storybook", `NX`, + `Jest`, ], type: "Extra Web Dev", }, From 694e984994d66453890a71fc4c4ef248bf26b3d7 Mon Sep 17 00:00:00 2001 From: Maruf Bepary Date: Fri, 7 Jul 2023 18:16:30 +0100 Subject: [PATCH 2/2] Added accent colour to close button on light mode --- components/Modal/Modal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Modal/Modal.tsx b/components/Modal/Modal.tsx index 455524db..d63e2e4a 100644 --- a/components/Modal/Modal.tsx +++ b/components/Modal/Modal.tsx @@ -105,7 +105,7 @@ const Modal: React.FC = ({ isOpen, onClose, children, title }) => { bg-white dark:bg-stone-900 hover:bg-gray-100 dark:hover:bg-stone-800 text-gray-400 dark:text-gray-500 - hover:text-gray-500 dark:hover:text-red-900 + hover:text-red-600 dark:hover:text-red-900 transition-colors duration-700 ease-in-out `} onClick={onClose}