File tree Expand file tree Collapse file tree 1 file changed +11
-12
lines changed Expand file tree Collapse file tree 1 file changed +11
-12
lines changed Original file line number Diff line number Diff line change 11import { RepositoryContributionsCard } from "@/components" ;
22import { useGitHubPullRequests } from "@/hooks" ;
3+ import { PullRequestContributionsByRepository } from "@/types/github" ;
4+ import { exportAsImage } from "@/utils" ;
35import { useSession } from "next-auth/react" ;
46import { useRouter } from "next/router" ;
57import { useMemo , useState } from "react" ;
6- import { exportAsImage } from "@/utils" ;
7- import { PullRequestContributionsByRepository } from "@/types/github" ;
88
99const yearsRange = 4 ;
1010
@@ -214,16 +214,15 @@ export default function Stats() {
214214 ) ;
215215 } ) }
216216 </ div >
217- < div className = "my-5" >
218- < div className = "my-5 flex items-center" >
219- < input
220- type = "text"
221- placeholder = "Type here"
222- className = "input input-bordered w-full max-w-xs"
223- value = { searchQuery }
224- onChange = { ( e ) => setSearchQuery ( e . target . value ) }
225- />
226- </ div >
217+ < div className = "my-5 flex flex-col sm:items-start items-center" >
218+ < label > Search</ label >
219+ < input
220+ type = "text"
221+ placeholder = "Type here"
222+ className = "input input-bordered w-full max-w-xs"
223+ value = { searchQuery }
224+ onChange = { ( e ) => setSearchQuery ( e . target . value ) }
225+ />
227226 </ div >
228227 </ div >
229228
You can’t perform that action at this time.
0 commit comments