Skip to content

Commit b229070

Browse files
committed
Add text wrap
1 parent eb7c71e commit b229070

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frontend/src/app/collaboration/components/question.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -388,20 +388,20 @@ const Question = ({
388388
</div>
389389
<div>
390390
<span className="font-bold text-xs">Expected Input: </span>
391-
<span className="text-primary-400 tracking-wide text-xs">
391+
<span className="text-primary-400 tracking-wide text-xs text-wrap">
392392
{example.expected_input}
393393
</span>
394394
</div>
395395
<div>
396396
<span className="font-bold text-xs">Expected Output: </span>
397-
<span className="text-primary-400 tracking-wide text-xs">
397+
<span className="text-primary-400 tracking-wide text-xs text-wrap">
398398
{example.expected_output}
399399
</span>
400400
</div>
401401
{example.explanation && (
402402
<div>
403403
<span className="font-bold text-xs">Explanation: </span>
404-
<span className="text-primary-400 tracking-wide text-xs">
404+
<span className="text-primary-400 tracking-wide text-xs text-wrap">
405405
{example.explanation}
406406
</span>
407407
</div>

0 commit comments

Comments
 (0)