@@ -208,12 +208,33 @@ export default function GhFinder() {
208
208
</ h1 >
209
209
210
210
< div className = "flex flex-col md:flex-row justify-between w-full lg:whitespace-nowrap my-5 items-center" >
211
- < input
211
+ { /* <input
212
212
type="text"
213
213
className="p-2 rounded border border-gray-400 text-black"
214
214
placeholder="Search issues"
215
215
value={searchQuery}
216
216
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 ) }
217
238
/>
218
239
< div className = "flex items-center mx-4 my-4" >
219
240
< input
@@ -245,22 +266,32 @@ export default function GhFinder() {
245
266
246
267
< div className = "flex justify-between w-full my-5 items-center" >
247
268
< 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
+ ` }
252
278
onClick = { ( ) => setSelected ( 1 ) }
253
279
>
254
280
Web Dev Tools Issues
255
281
</ button >
256
282
< 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
+ ` }
261
292
onClick = { ( ) => setSelected ( 2 ) }
262
293
>
263
- Github
294
+ GitHub
264
295
</ button >
265
296
< BasicModal
266
297
isDarkMode = { isDarkMode }
@@ -281,7 +312,15 @@ export default function GhFinder() {
281
312
issuesByPage . map ( ( item ) => (
282
313
< div
283
314
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
+ ` }
285
324
>
286
325
< div className = " overflow-hidden" >
287
326
< Link
0 commit comments