Reduce size of read receipts
This commit is contained in:
parent
e7106a35b3
commit
94c55b6cbe
|
@ -350,11 +350,11 @@ const ChatMessageList: React.FC<IChatMessageList> = ({ chat }) => {
|
||||||
<>
|
<>
|
||||||
{isRead ? (
|
{isRead ? (
|
||||||
<span className='rounded-full flex flex-col items-center justify-center p-0.5 bg-primary-500 text-white dark:bg-primary-400 dark:text-primary-900 border border-solid border-primary-500 dark:border-primary-400'>
|
<span className='rounded-full flex flex-col items-center justify-center p-0.5 bg-primary-500 text-white dark:bg-primary-400 dark:text-primary-900 border border-solid border-primary-500 dark:border-primary-400'>
|
||||||
<Icon src={require('@tabler/icons/check.svg')} strokeWidth={3} className='w-3 h-3' />
|
<Icon src={require('@tabler/icons/check.svg')} strokeWidth={3} className='w-2.5 h-2.5' />
|
||||||
</span>
|
</span>
|
||||||
) : (
|
) : (
|
||||||
<span className='rounded-full flex flex-col items-center justify-center p-0.5 bg-transparent text-primary-500 dark:text-primary-400 border border-solid border-primary-500 dark:border-primary-400'>
|
<span className='rounded-full flex flex-col items-center justify-center p-0.5 bg-transparent text-primary-500 dark:text-primary-400 border border-solid border-primary-500 dark:border-primary-400'>
|
||||||
<Icon src={require('@tabler/icons/check.svg')} strokeWidth={3} className='w-3 h-3' />
|
<Icon src={require('@tabler/icons/check.svg')} strokeWidth={3} className='w-2.5 h-2.5' />
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
</>
|
</>
|
||||||
|
|
Loading…
Reference in New Issue