From e2f670e4a9636b7efd7b49668a0fb26834625ea6 Mon Sep 17 00:00:00 2001 From: eshanized Date: Tue, 7 Jan 2025 23:06: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/PackageCard.tsx | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/src/components/PackageCard.tsx b/src/components/PackageCard.tsx index 681281a..7081003 100644 --- a/src/components/PackageCard.tsx +++ b/src/components/PackageCard.tsx @@ -11,43 +11,45 @@ export function PackageCard({ package: pkg }: PackageCardProps) { const [expanded, setExpanded] = useState(false); return ( -
+
{/* Header Section */} -
+
{/* Icon Section */} -
+
{/* Package Information */}
-

+

{pkg.name}

{pkg.version}
-

{pkg.description}

+

+ {pkg.description} +

{/* Footer Section */}
- + {pkg.repository}