Skip to content

Commit 40cdb74

Browse files
committed
refactor(html structure): restructure html to exactly match previous implementation
1 parent f876b11 commit 40cdb74

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

src/components/Contributors.tsx

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,15 @@ const Contributors = () => {
4242
alt={contributor.name}
4343
/>
4444
<div className="p-4">
45-
<InlineLink
46-
className="static flex-grow text-body no-underline before:absolute before:left-0 before:top-0 before:z-0 before:block before:h-full before:w-full before:cursor-pointer before:content-[''] hover:no-underline"
47-
href={contributor.profile}
48-
hideArrow
49-
>
50-
<h3 className="mb-4 mt-2 text-md">{contributor.name}</h3>
51-
</InlineLink>
45+
<h3 className="mb-4 mt-2 text-md">
46+
<InlineLink
47+
className="static flex-grow text-body no-underline before:absolute before:left-0 before:top-0 before:z-0 before:block before:h-full before:w-full before:cursor-pointer before:content-[''] hover:no-underline"
48+
href={contributor.profile}
49+
hideArrow
50+
>
51+
{contributor.name}
52+
</InlineLink>
53+
</h3>
5254
</div>
5355
</Flex>
5456
))}

0 commit comments

Comments
 (0)