Skip to content

Commit

Permalink
fix: ui for explore models page
Browse files Browse the repository at this point in the history
  • Loading branch information
alarv committed Oct 23, 2024
1 parent 06d30ea commit e5ba4f1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/app/dashboard/explore/components/ModelCategories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ export default function ModelCategories({ categories }: ModelCategoriesProps) {
isBlurred
>
<CardHeader className="absolute top-0 z-10 flex-col !items-start bg-white/50 backdrop-blur-sm dark:bg-black/50">
<p className="text-tiny font-bold uppercase">{item.name}</p>
<h4 className="line-clamp-2 text-large font-medium">
<p className="text-base font-bold uppercase">{item.name}</p>
<h4 className="line-clamp-2 text-sm font-medium">
{item.description}
</h4>
</CardHeader>
Expand Down Expand Up @@ -104,8 +104,8 @@ export default function ModelCategories({ categories }: ModelCategoriesProps) {
className={'min-h-[250px] min-w-[250px]'}
>
<CardHeader className="absolute top-0 z-10 flex-col !items-start bg-white/50 backdrop-blur-sm dark:bg-black/50">
<p className="text-tiny font-bold uppercase">{item.name}</p>
<h4 className="line-clamp-2 text-large font-medium">
<p className="text-base font-bold uppercase">{item.name}</p>
<h4 className="line-clamp-2 text-sm font-medium">
{item.description}
</h4>
</CardHeader>
Expand Down Expand Up @@ -137,8 +137,8 @@ export default function ModelCategories({ categories }: ModelCategoriesProps) {
className={'min-h-[250px] min-w-[250px]'}
>
<CardHeader className="absolute top-0 z-10 flex-col !items-start bg-white/50 backdrop-blur-sm dark:bg-black/50">
<p className="text-tiny font-bold uppercase">{item.name}</p>
<h4 className="line-clamp-2 text-large font-medium">
<p className="text-base font-bold uppercase">{item.name}</p>
<h4 className="line-clamp-3 text-sm font-medium">
{item.description}
</h4>
</CardHeader>
Expand Down

0 comments on commit e5ba4f1

Please sign in to comment.