Skip to content

Commit

Permalink
fix reply placeholder overflow (#2193)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajbura authored Feb 10, 2025
1 parent 7b4f684 commit 5460e49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/message/Reply.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ export const Reply = as<'div', ReplyProps>(
<LinePlaceholder
style={{
backgroundColor: color.SurfaceVariant.ContainerActive,
maxWidth: toRem(placeholderWidth),
width: '100vw',
width: toRem(placeholderWidth),
maxWidth: '100%',
}}
/>
)}
Expand Down

0 comments on commit 5460e49

Please sign in to comment.