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

Commit

Permalink
Update SkillList component styling for maximum height
Browse files Browse the repository at this point in the history
  • Loading branch information
miurla committed Aug 7, 2023
1 parent 3a2d429 commit 05bd0b6
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

0 comments on commit 05bd0b6

Please sign in to comment.