We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14cecab commit 877002fCopy full SHA for 877002f
src/components/SkillLayout.astro
@@ -4,8 +4,8 @@ const { title, skills } = Astro.props;
4
---
5
6
<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'>
+ <h3 class='sm:w-1/5 font-semibold'>{title}</h3>
+ <div class='flex sm:w-4/5 flex-row flex-wrap gap-x-4 gap-y-2'>
9
{skills.map((skill: string[]) => <Button as='button' title={skill} style='pill' />)}
10
</div>
11
0 commit comments