Skip to content

Commit

Permalink
Break sentence into words, break long words (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
rustworthy authored Dec 31, 2024
1 parent 77525cb commit fabac94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/Question.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
{#await q}
<p class="text-xl">loading...</p>
{:then q}
<p class="text-xl">{q.text}</p>
<p class="break-words text-xl" style="word-break:break-word">{q.text}</p>
<div class="pt-1 text-right text-slate-400">
<span>{since(q, now)}</span>
{#if q.who}
Expand Down

0 comments on commit fabac94

Please sign in to comment.