Skip to content

Commit

Permalink
prevent long comments from overflowing on the x.
Browse files Browse the repository at this point in the history
  • Loading branch information
fiatjaf committed Nov 26, 2023
1 parent 3397d29 commit 36bcb6a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/components.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,9 @@ export const CommentContent = styled.div`
margin-top: 8px;
max-height: 306px;
overflow-y: auto;
max-width: 600px;
white-space: pre-wrap;
word-break: break-all;
`

export const Textarea = styled.textarea`
Expand Down

0 comments on commit 36bcb6a

Please sign in to comment.