Skip to content

Commit

Permalink
add cols
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKurt committed Nov 5, 2024
1 parent d3683a8 commit d82af1d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ export function CollectionDetails({

return (
<div className="mt-16">
<div className="flex flex-col gap-12">
<div className="flex flex-col md:flex-row justify-between items-start md:items-center">
<div className="grid grid-cols-1 md:grid-cols-4 gap-12">
<div className="col-span-1 md:col-span-4 flex flex-col md:flex-row justify-between items-start md:items-center">
<h3 className="text-4xl font-medium">
{`${collection.name ?? defaultCollectionName} (${projectsInView})`}
</h3>
Expand All @@ -41,7 +41,7 @@ export function CollectionDetails({
/>
</div>
</div>
<div className="text-lg flex-1 whitespace-pre-wrap">
<div className="col-span-1 md:col-span-3 text-lg flex-1 whitespace-pre-wrap">
{description ?? collection.description}
</div>
</div>
Expand Down

0 comments on commit d82af1d

Please sign in to comment.