Skip to content
This repository has been archived by the owner on Oct 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #165 from miurla/skill
Browse files Browse the repository at this point in the history
Update SkillList component styling for maximum height
  • Loading branch information
miurla authored Aug 7, 2023
2 parents 3a2d429 + 05bd0b6 commit 58fed77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Agent/SkillList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const SkillsList: FC<SkillsListProps> = ({ skills }) => {
<span>{translate('AVAILABLE_SKILLS')}</span>
<span>{`(${skills.length})`}</span>
</div>
<div className="flex max-h-64 w-full flex-col items-start gap-2 overflow-auto rounded-lg border bg-white p-2 font-mono text-sm text-neutral-500 dark:border-neutral-800 dark:bg-neutral-900 dark:text-neutral-600">
<div className="flex max-h-24 w-full flex-col items-start gap-2 overflow-auto rounded-lg border bg-white p-2 font-mono text-sm text-neutral-500 dark:border-neutral-800 dark:bg-neutral-900 dark:text-neutral-600">
{sortedSkills.map((skill, index) => (
<SkillCard
key={index}
Expand Down

1 comment on commit 58fed77

@vercel
Copy link

@vercel vercel bot commented on 58fed77 Aug 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

babyagi-ui – ./

babyagi-ui-git-main-babyagi-ui.vercel.app
babyagi-ui-babyagi-ui.vercel.app
babyagi-ui.vercel.app

Please sign in to comment.