Skip to content

Commit f876b11

Browse files
committed
refactor(html structure): restructure html to closely match previous implementation
1 parent b3f58df commit f876b11

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/components/Contributors.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ const Contributors = () => {
4141
src={contributor.avatar_url}
4242
alt={contributor.name}
4343
/>
44-
<InlineLink
45-
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"
46-
href={contributor.profile}
47-
hideArrow
48-
>
49-
<div className="p-4">
44+
<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+
>
5050
<h3 className="mb-4 mt-2 text-md">{contributor.name}</h3>
51-
</div>
52-
</InlineLink>
51+
</InlineLink>
52+
</div>
5353
</Flex>
5454
))}
5555
</Flex>

0 commit comments

Comments
 (0)