From e211ef2a3df043d7f8a3b40c600d35734e6be794 Mon Sep 17 00:00:00 2001 From: eshanized Date: Thu, 16 Jan 2025 06:35:47 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20style:=20minor=20changes=20in=20ui*?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/features/ToolCard.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/features/ToolCard.tsx b/src/components/features/ToolCard.tsx index 61d6f987..ae3aac82 100644 --- a/src/components/features/ToolCard.tsx +++ b/src/components/features/ToolCard.tsx @@ -15,20 +15,20 @@ export function ToolCard({ name, description, category, command }: ToolCardProps whileInView={{ opacity: 1, y: 0 }} whileHover={{ scale: 1.05, y: -5 }} transition={{ duration: 0.3 }} - className="bg-gradient-to-r from-cornflower-blue/10 to-white p-6 rounded-lg shadow-lg border border-gray-100 transform hover:shadow-2xl transition-all" + className="bg-white p-6 rounded-lg shadow-xl border border-gray-100 transform hover:shadow-2xl transition-all" >
-
- +
+

{name}

- +

{description}

- -
+ +
{category} - {command} + {command}
);