Sfoglia il codice sorgente

fix: abnormal styles (#711)

bowen 1 anno fa
parent
commit
41d33ee837

+ 1 - 1
web/app/components/app/chat/index.tsx

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

+ 1 - 1
web/app/components/app/chat/style.module.css

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

+ 1 - 1
web/app/components/explore/app-list/index.tsx

@@ -95,7 +95,7 @@ const Apps: FC = () => {
         onChange={setCurrCategory}
       />
       <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={{
           maxHeight: 'calc(100vh - 243px)',
         }}