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

Commit 58fed77

Browse files
authored
Merge pull request #165 from miurla/skill
Update SkillList component styling for maximum height
2 parents 3a2d429 + 05bd0b6 commit 58fed77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Agent/SkillList.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const SkillsList: FC<SkillsListProps> = ({ skills }) => {
2020
<span>{translate('AVAILABLE_SKILLS')}</span>
2121
<span>{`(${skills.length})`}</span>
2222
</div>
23-
<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">
23+
<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">
2424
{sortedSkills.map((skill, index) => (
2525
<SkillCard
2626
key={index}

0 commit comments

Comments
 (0)