Fix spacing bug

This commit is contained in:
Chewbacca 2022-12-09 11:48:29 -05:00 committed by Alex Gleason
parent 502f9d9f47
commit af19c1bd44
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
2 changed files with 4 additions and 1 deletions

View file

@ -151,6 +151,9 @@ const ChatComposer = React.forwardRef<HTMLTextAreaElement | null, IChatComposer>
return (
<div className='mt-auto px-4 shadow-3xl'>
{/* Spacer */}
<div className='h-5' />
<HStack alignItems='stretch' justifyContent='between' space={4}>
{features.chatsMedia && (
<Stack justifyContent='end' alignItems='center' className='w-10 mb-1.5'>

View file

@ -450,7 +450,7 @@ const ChatMessageList: React.FC<IChatMessageList> = ({ chat }) => {
return (
<div className='h-full flex flex-col flex-grow space-y-6'>
<div className='flex-grow flex flex-col justify-end pb-2'>
<div className='flex-grow flex flex-col justify-end'>
<Virtuoso
ref={node}
alignToBottom