mirror of https://github.com/langgenius/dify.git
chore: Correct padding in embedded chatbot (#26832)
This commit is contained in:
parent
5fc104a992
commit
c71fd7113c
|
|
@ -240,7 +240,7 @@ const ChatWrapper = () => {
|
|||
config={appConfig}
|
||||
chatList={messageList}
|
||||
isResponding={respondingState}
|
||||
chatContainerInnerClassName={cn('mx-auto w-full max-w-full pt-4 tablet:px-4', isMobile && 'px-4')}
|
||||
chatContainerInnerClassName={cn('mx-auto w-full max-w-full px-4', messageList.length && 'pt-4')}
|
||||
chatFooterClassName={cn('pb-4', !isMobile && 'rounded-b-2xl')}
|
||||
chatFooterInnerClassName={cn('mx-auto w-full max-w-full px-4', isMobile && 'px-2')}
|
||||
onSend={doSend}
|
||||
|
|
|
|||
Loading…
Reference in New Issue