mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-11-14 03:00:29 +03:00
Fix reply username overflow (#1501)
* fix reply overflow * fix shrinkable typing indicator * fix message avatar hover & cursor
This commit is contained in:
parent
8731f58948
commit
c7e5c1fce8
5 changed files with 18 additions and 3 deletions
|
|
@ -67,7 +67,11 @@ export const Reply = as<'div', ReplyProps>(
|
|||
{...props}
|
||||
ref={ref}
|
||||
>
|
||||
<Box style={{ color: colorMXID(sender ?? eventId) }} alignItems="Center" shrink="No">
|
||||
<Box
|
||||
style={{ color: colorMXID(sender ?? eventId), maxWidth: '50%' }}
|
||||
alignItems="Center"
|
||||
shrink="No"
|
||||
>
|
||||
<Icon src={Icons.ReplyArrow} size="50" />
|
||||
{sender && (
|
||||
<Text size="T300" truncate>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue