Skip to content

Commit 877002f

Browse files
committed
Fix skill css
1 parent 14cecab commit 877002f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/SkillLayout.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ const { title, skills } = Astro.props;
44
---
55

66
<div class='flex flex-col gap-y-2 md:flex-row md:gap-x-5 md:gap-y-0'>
7-
<h3 class='w-1/5 font-semibold'>{title}</h3>
8-
<div class='flex w-4/5 flex-row flex-wrap gap-x-4 gap-y-2'>
7+
<h3 class='sm:w-1/5 font-semibold'>{title}</h3>
8+
<div class='flex sm:w-4/5 flex-row flex-wrap gap-x-4 gap-y-2'>
99
{skills.map((skill: string[]) => <Button as='button' title={skill} style='pill' />)}
1010
</div>
1111
</div>

0 commit comments

Comments
 (0)