File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -33,19 +33,19 @@ const Contributors = () => {
33
33
< Flex className = "flex-wrap" >
34
34
{ contributorsList . map ( ( contributor ) => (
35
35
< Flex
36
- className = "m-2 max-w-[132px] transform flex-col shadow-table transition-transform duration-100 hover:scale-[1.02] hover:rounded hover:bg-background-table-hover hover:no-underline hover:shadow-table-box-hover focus:scale-[1.02] focus:rounded focus:no-underline focus:shadow-table-box-hover"
36
+ className = "relative z-10 m-2 max-w-[132px] transform flex-col shadow-table transition-transform duration-100 hover:scale-[1.02] hover:rounded hover:bg-background-table-hover hover:no-underline hover:shadow-table-box-hover focus:scale-[1.02] focus:rounded focus:no-underline focus:shadow-table-box-hover"
37
37
key = { contributor . login }
38
38
>
39
+ < img
40
+ className = "h-[132px] w-[132px]"
41
+ src = { contributor . avatar_url }
42
+ alt = { contributor . name }
43
+ />
39
44
< InlineLink
40
- className = "block flex-grow text-body no-underline hover:no-underline"
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"
41
46
href = { contributor . profile }
42
47
hideArrow
43
48
>
44
- < img
45
- className = "h-[132px] w-[132px]"
46
- src = { contributor . avatar_url }
47
- alt = { contributor . name }
48
- />
49
49
< div className = "p-4" >
50
50
< h3 className = "mb-4 mt-2 text-md" > { contributor . name } </ h3 >
51
51
</ div >
You can’t perform that action at this time.
0 commit comments