Skip to content

Commit ecfb7a3

Browse files
authored
Merge pull request #334 from annuk123/main
Fixed github issue finder
2 parents 8623ab2 + 330f2b8 commit ecfb7a3

File tree

2 files changed

+67
-12
lines changed

2 files changed

+67
-12
lines changed

src/app/gh-finder/modal.jsx

+17-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,23 @@ export default function BasicModal({
5454

5555
return (
5656
<div>
57-
<Button onClick={handleOpen}>Filter</Button>
57+
<Button className="p-2rounded-full">
58+
<svg
59+
xmlns="http://www.w3.org/2000/svg"
60+
fill="none"
61+
viewBox="0 0 24 24"
62+
strokeWidth="2"
63+
stroke="currentColor"
64+
className="h-6 w-6 text-gray-500"
65+
>
66+
<path
67+
strokeLinecap="round"
68+
strokeLinejoin="round"
69+
d="M3 4a1 1 0 011-1h16a1 1 0 011 1v2a1 1 0 01-.293.707L14 12.414V18a1 1 0 01-.553.894l-4 2A1 1 0 018 20v-7.586L3.293 6.707A1 1 0 013 6V4z"
70+
/>
71+
</svg>
72+
<Button onClick={handleOpen}>Filter</Button>
73+
</Button>
5874
<Modal
5975
open={open}
6076
onClose={handleClose}

src/app/gh-finder/page.jsx

+50-11
Original file line numberDiff line numberDiff line change
@@ -208,12 +208,33 @@ export default function GhFinder() {
208208
</h1>
209209

210210
<div className="flex flex-col md:flex-row justify-between w-full lg:whitespace-nowrap my-5 items-center">
211-
<input
211+
{/* <input
212212
type="text"
213213
className="p-2 rounded border border-gray-400 text-black"
214214
placeholder="Search issues"
215215
value={searchQuery}
216216
onChange={(e) => setSearchQuery(e.target.value)}
217+
/> */}
218+
<input
219+
type="text"
220+
className={`
221+
w-full md:w-auto
222+
p-3
223+
rounded-lg
224+
border border-gray-300
225+
focus:ring-2 focus:ring-blue-500
226+
focus:outline-none
227+
transition duration-200 ease-in-out
228+
text-gray-700
229+
placeholder-gray-400
230+
shadow-sm
231+
hover:shadow-md
232+
${
233+
isDarkMode ? "bg-gray-800 text-gray-400" : "bg-gray-200 text-gray-500"
234+
} `}
235+
placeholder="Search issues"
236+
value={searchQuery}
237+
onChange={(e) => setSearchQuery(e.target.value)}
217238
/>
218239
<div className="flex items-center mx-4 my-4">
219240
<input
@@ -245,22 +266,32 @@ export default function GhFinder() {
245266

246267
<div className="flex justify-between w-full my-5 items-center">
247268
<button
248-
className={
249-
"hover:bg-blue-800 transition-colors md:min-w-1/3 duration-100 px-3 py-2 md:p-5 text-sm rounded-full hover:text-white " +
250-
(selected === 1 && "bg-blue-600 text-white")
251-
}
269+
className={`w-full md:w-1/3 px-5 py-3 md:py-4
270+
text-sm font-medium rounded-full transition-all duration-200 ease-in-out
271+
border border-transparent focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2
272+
${
273+
selected === 1
274+
? "bg-blue-600 text-white shadow-lg"
275+
: "bg-gray-200 text-gray-700 hover:bg-blue-700 hover:text-white"
276+
}
277+
`}
252278
onClick={() => setSelected(1)}
253279
>
254280
Web Dev Tools Issues
255281
</button>
256282
<button
257-
className={
258-
"hover:bg-blue-800 transition-colors md:w-1/3 duration-100 px-3 py-2 md:p-5 text-sm rounded-full hover:text-white " +
259-
(selected === 2 && "bg-blue-600 text-white")
260-
}
283+
className={`w-full md:w-1/3 px-5 py-3 md:py-4
284+
text-sm font-medium rounded-full transition-all duration-200 ease-in-out
285+
border border-transparent focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2
286+
${
287+
selected === 2
288+
? "bg-blue-600 text-white shadow-lg"
289+
: "bg-gray-200 text-gray-700 hover:bg-blue-700 hover:text-white"
290+
}
291+
`}
261292
onClick={() => setSelected(2)}
262293
>
263-
Github
294+
GitHub
264295
</button>
265296
<BasicModal
266297
isDarkMode={isDarkMode}
@@ -281,7 +312,15 @@ export default function GhFinder() {
281312
issuesByPage.map((item) => (
282313
<div
283314
key={item.id}
284-
className="bg-slate-500 rounded-lg mb-5 last:mb-0 pl-5 py-5 flex justify-between items-end w-full"
315+
// className="bg-slate-500 rounded-lg mb-5 last:mb-0 pl-5 py-5 flex justify-between items-end w-full"
316+
className={` ${
317+
isDarkMode
318+
? "bg-gray-800 text-gray-400"
319+
: "bg-gray-400 text-gray-500"
320+
}
321+
rounded-lg mb-5 last:mb-0 pl-5 py-5 flex justify-between items-end w-full
322+
transition-transform transform hover:scale-105 hover:shadow-lg
323+
`}
285324
>
286325
<div className=" overflow-hidden">
287326
<Link

0 commit comments

Comments
 (0)