Skip to content

Commit

Permalink
break words on description. break-words TW class doesn't work
Browse files Browse the repository at this point in the history
  • Loading branch information
carletex committed Sep 6, 2024
1 parent 6e5d204 commit a231994
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const SubmissionCard = ({ submission }: { submission: SubmissionWithWinne
{submission.builder && <Address address={submission.builder} disableAddressLink />}
</div>

<p>{submission.description}</p>
<p style={{ wordBreak: "break-word" }}>{submission.description}</p>
</div>
</div>
);
Expand Down

0 comments on commit a231994

Please sign in to comment.