@@ -61,11 +61,11 @@ function Card({ repo }: Props) {
61
61
</ div >
62
62
63
63
{ /* stars and forks cards */ }
64
- < div className = "flex flex-wrap gap-3 xl:gap-5 text-neutral-100 cursor-pointer mt-8" >
64
+ < div className = "container-query flex flex-wrap justify-between gap-3 xl:gap-5 text-neutral-100 cursor-pointer mt-8" >
65
65
< a
66
66
href = { `${ repo . html_url } /stargazers` }
67
67
target = "_blank"
68
- className = "group w-full flex-shrink-0 flex-grow-1 mx-auto basis-[120px] border rounded-xl p-3 xl:px-4 flex items-center gap-2 xl:gap-3 relative"
68
+ className = "group w-full flex-shrink-0 flex-grow-1 basis-[120px] border rounded-xl p-3 xl:px-4 flex items-center gap-2 xl:gap-3 relative"
69
69
>
70
70
< GoStar className = "text-yellow-200 text-2xl" />
71
71
< div className = "flex flex-col" >
@@ -84,7 +84,7 @@ function Card({ repo }: Props) {
84
84
< a
85
85
href = { `${ repo . html_url } /forks` }
86
86
target = "_blank"
87
- className = "group flex-shrink-0 flex-grow-1 mx-auto basis-[120px] border rounded-xl p-3 flex items-center gap-3 relative"
87
+ className = "group flex-shrink-0 flex-grow-1 basis-[120px] border rounded-xl p-3 flex items-center gap-3 relative"
88
88
>
89
89
< GoRepoForked className = "text-yellow-200 text-2xl" />
90
90
< div className = "flex flex-col" >
@@ -103,7 +103,7 @@ function Card({ repo }: Props) {
103
103
< a
104
104
href = { `${ repo . html_url } /issues` }
105
105
target = "_blank"
106
- className = "group flex-shrink-0 flex-grow-1 mx-auto basis-[120px] border rounded-xl p-3 flex items-center gap-3 relative"
106
+ className = "group issues-btn flex-shrink-0 flex-grow-1 basis-[120px] border rounded-xl p-3 flex items-center gap-3 relative"
107
107
>
108
108
< GoIssueOpened className = "text-yellow-200 text-2xl" />
109
109
< div className = "flex flex-col" >
0 commit comments