Skip to content

Commit e211ef2

Browse files
committed
✨ style: minor changes in ui*
1 parent f97fe74 commit e211ef2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/components/features/ToolCard.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@ export function ToolCard({ name, description, category, command }: ToolCardProps
1515
whileInView={{ opacity: 1, y: 0 }}
1616
whileHover={{ scale: 1.05, y: -5 }}
1717
transition={{ duration: 0.3 }}
18-
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"
18+
className="bg-white p-6 rounded-lg shadow-xl border border-gray-100 transform hover:shadow-2xl transition-all"
1919
>
2020
<div className="flex items-center gap-4 mb-4">
21-
<div className="p-3 bg-cornflower-blue/20 rounded-full">
22-
<Terminal className="h-6 w-6 text-cornflower-blue" />
21+
<div className="p-4 bg-cornflower-blue/20 rounded-full">
22+
<Terminal className="h-7 w-7 text-cornflower-blue" />
2323
</div>
2424
<h3 className="text-2xl font-semibold text-gray-900">{name}</h3>
2525
</div>
26-
26+
2727
<p className="text-gray-600 text-lg mb-4">{description}</p>
28-
29-
<div className="flex items-center justify-between">
28+
29+
<div className="flex items-center justify-between mt-4">
3030
<span className="text-sm font-medium text-cornflower-blue">{category}</span>
31-
<code className="text-sm bg-gray-100 px-3 py-1 rounded">{command}</code>
31+
<code className="text-sm bg-gray-100 px-3 py-1 rounded text-gray-800">{command}</code>
3232
</div>
3333
</motion.div>
3434
);

0 commit comments

Comments
 (0)