fix: abnormal styles (#711)

This commit is contained in:
bowen 2023-08-02 17:31:30 +08:00 committed by GitHub
parent 9485cc9308
commit 41d33ee837
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -193,7 +193,7 @@ const Chat: FC<IChatProps> = ({
)} )}
{ {
isShowSuggestion && ( isShowSuggestion && (
<div className='pt-2 mb-2 '> <div className='pt-2'>
<div className='flex items-center justify-center mb-2.5'> <div className='flex items-center justify-center mb-2.5'>
<div className='grow h-[1px]' <div className='grow h-[1px]'
style={{ style={{

View File

@ -1,6 +1,6 @@
.answerIcon { .answerIcon {
position: relative; position: relative;
background: url(./icons/robot.svg); background: url(./icons/robot.svg) 100%/100%;
} }
.typeingIcon { .typeingIcon {

View File

@ -95,7 +95,7 @@ const Apps: FC = () => {
onChange={setCurrCategory} onChange={setCurrCategory}
/> />
<div <div
className='flex mt-6 flex-col overflow-auto bg-gray-100 shrink-0 grow' className='flex mt-6 pb-6 flex-col overflow-auto bg-gray-100 shrink-0 grow'
style={{ style={{
maxHeight: 'calc(100vh - 243px)', maxHeight: 'calc(100vh - 243px)',
}} }}