@@ -360,28 +360,28 @@ const Question = ({
360
360
</ Button >
361
361
</ div >
362
362
< span className = "row-span-1 text-primary-300 text-md max-h-[100%] h-full overflow-y-auto flex flex-col gap-2 bg-primary-800 p-3 rounded-md" >
363
- < span className = "text-yellow-500 font-bold" > Question Description</ span >
364
- < span className = "text-white text-md py-4 " > { question ?. description } </ span >
365
- < span className = "text-yellow-500 font-bold" > Examples</ span >
363
+ < span className = "text-yellow-500 font-bold text-md " > Question Description</ span >
364
+ < span className = "text-white py-2 text-xs " > { question ?. description } </ span >
365
+ < span className = "text-yellow-500 font-bold text-md " > Examples</ span >
366
366
{ question ?. examples ?. map ( ( example , idx ) => (
367
367
< div key = { idx } >
368
- < div className = "font-bold underline" >
368
+ < div className = "font-bold underline text-xs " >
369
369
Example { example . example_num } :
370
370
</ div >
371
371
< div >
372
- < span className = "font-bold" > Expected Input: </ span >
373
- < span className = "text-primary-400 tracking-wide" >
372
+ < span className = "font-bold text-xs " > Expected Input: </ span >
373
+ < span className = "text-primary-400 tracking-wide text-xs " >
374
374
{ example . expected_input }
375
375
</ span >
376
376
</ div >
377
377
< div >
378
- < span className = "font-bold" > Expected Output: </ span >
379
- < span className = "text-primary-400 tracking-wide" >
378
+ < span className = "font-bold text-xs " > Expected Output: </ span >
379
+ < span className = "text-primary-400 tracking-wide text-xs " >
380
380
{ example . expected_output }
381
381
</ span >
382
382
</ div >
383
- < span className = "font-bold" > Explanation: </ span >
384
- < span className = "text-primary-400 tracking-wide" >
383
+ < span className = "font-bold text-xs " > Explanation: </ span >
384
+ < span className = "text-primary-400 tracking-wide text-xs " >
385
385
{ example . explanation }
386
386
</ span >
387
387
< br />
@@ -401,7 +401,7 @@ const Question = ({
401
401
< span className = "text-xs italic" >
402
402
We currently only support JavaScript. Sorry!
403
403
</ span >
404
- < SyntaxHighlighter language = "javascript" >
404
+ < SyntaxHighlighter language = "javascript" class = "text-xs" >
405
405
{ question ?. solution }
406
406
</ SyntaxHighlighter >
407
407
</ div >
0 commit comments