Skip to content

Commit

Permalink
padding
Browse files Browse the repository at this point in the history
  • Loading branch information
Doppen committed Jun 12, 2024
1 parent 09f2adb commit 51755d6
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions apps/researcher/src/app/[locale]/communities/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -193,13 +193,17 @@ export default async function CommunityPage({params}: Props) {
data-testid={`object-list-item-${objectList.id}`}
href={`/communities/${params.slug}/${objectList.id}`}
key={objectList.id}
className="no-underline bg-consortium-light-blue-100 rounded-lg flex flex-col justify-between p4"
className="no-underline bg-consortium-light-blue-100 rounded-lg flex flex-col justify-between"
>
<div className="text-sm text-consortium-blue-500">List</div>
<h3 className="font-semibold text-lg mt-4 mb-2">
{objectList.name}
</h3>
<p>{objectList.description}</p>
<div className="text-sm text-consortium-blue-500 p-4">
List
</div>
<div className="p-4">
<h3 className="font-semibold text-lg mt-4 mb-2">
{objectList.name}
</h3>
<p>{objectList.description}</p>
</div>

<div className="w-full relative">
<ul className=" mt-4 grid grid-cols-4 gap-2">
Expand Down

0 comments on commit 51755d6

Please sign in to comment.