Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions apps/web/ui/partners/partner-about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ export function PartnerAbout({
return partner ? (
<>
<div className="flex flex-col gap-2">
<h3 className="text-content-emphasis text-xs font-semibold">
<h3 className="text-content-emphasis text-sm font-semibold">
Description
</h3>
<p className="text-content-default text-xs">
<p className="text-content-default max-w-prose text-sm">
{partner.description || (
<span className="italic text-neutral-400">
No description provided
Expand All @@ -33,14 +33,13 @@ export function PartnerAbout({
</div>

<div className="flex flex-col gap-2">
<h3 className="text-content-emphasis text-xs font-semibold">
<h3 className="text-content-emphasis text-sm font-semibold">
Website and socials
</h3>
<OnlinePresenceSummary
partner={partner}
showLabels={false}
className="gap-y-2"
emptyClassName="text-xs"
/>
</div>

Expand Down
4 changes: 2 additions & 2 deletions apps/web/ui/partners/partner-application-details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function PartnerApplicationDetails({
];

return (
<div className="grid grid-cols-1 gap-5 text-xs">
<div className="grid grid-cols-1 gap-5 text-sm">
{fields.map((field) => (
<div key={field.title}>
<h4 className="text-content-emphasis font-semibold">{field.title}</h4>
Expand All @@ -44,7 +44,7 @@ export function PartnerApplicationDetails({
target: "_blank",
rel: "noopener noreferrer nofollow",
className:
"underline underline-offset-4 text-neutral-400 hover:text-neutral-700",
"underline underline-offset-4 text-sm max-w-prose text-neutral-400 hover:text-neutral-700",
}}
>
{field.value || (
Expand Down