Skip to content

Commit

Permalink
allow text selection in dms
Browse files Browse the repository at this point in the history
  • Loading branch information
futurepaul committed Apr 12, 2024
1 parent 2ce63c8 commit 2f027bc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/routes/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,9 @@ function SingleMessage(props: {
</div>
</Match>
<Match when={true}>
<p class="!mb-0 break-words">{props.dm.message}</p>
<p class="!mb-0 !select-text break-words">
{props.dm.message}
</p>
</Match>
</Switch>
<time
Expand Down

0 comments on commit 2f027bc

Please sign in to comment.