Skip to content

Commit

Permalink
add margin to member graphic. add informing text
Browse files Browse the repository at this point in the history
  • Loading branch information
SortHvit committed Sep 9, 2024
1 parent 2ec074e commit 99dfc4e
Show file tree
Hide file tree
Showing 3 changed files with 276 additions and 227 deletions.
14 changes: 14 additions & 0 deletions src/app/_components/OrganisationMemberInfo.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
export function OrganisationMembersInfo({
children,
title
}: {
children?: React.ReactNode
title: string
}) {
return (
<div className="mt=5 relative flex min-w-48 flex-1 flex-col rounded-lg bg-green-950 p-5">
<h3 className="font-lato text-2xl">{title}</h3>
<p className="italic text-gray-200">{children}</p>
</div>
)
}
Loading

0 comments on commit 99dfc4e

Please sign in to comment.