Increase space between ChatListItems

This commit is contained in:
Justin 2022-09-22 14:13:15 -04:00
parent 045fe8dcbb
commit 516d35e8ab

View file

@ -18,7 +18,7 @@ const ChatListItem: React.FC<IChatListItemInterface> = ({ chat, chatSilence, onC
key={chat.id} key={chat.id}
type='button' type='button'
onClick={() => onClick(chat)} onClick={() => onClick(chat)}
className='p-2 w-full flex flex-col rounded-lg hover:bg-gray-100 dark:hover:bg-gray-800 focus:shadow-inset-ring' className='px-2 py-3 w-full flex flex-col rounded-lg hover:bg-gray-100 dark:hover:bg-gray-800 focus:shadow-inset-ring'
data-testid='chat' data-testid='chat'
> >
<HStack alignItems='center' justifyContent='between' space={2} className='w-full'> <HStack alignItems='center' justifyContent='between' space={2} className='w-full'>