Skip to content

Commit 78f7add

Browse files
committed
fix: changed display of tech stack in projects
1 parent 626eb7d commit 78f7add

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/components/Tiles/ProjectTile.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export function ProjectTile({ title, description, repo, repoUrl, live, liveUrl,
4141
</div>
4242
<p className="text-gray-700 dark:text-gray-300">{description}</p>
4343
{techStack && techStack.length > 0 && (
44-
<div className="mt-1 space-x-2">
44+
<div className="mt-1 flex flex-wrap gap-1">
4545
{techStack.map((skillText, index) => (
4646
<Badge key={index} variant={`secondary`}>{skillText}</Badge>
4747
))}

0 commit comments

Comments
 (0)