소스 검색

fix: styles (#1005)

tags/0.3.19
crazywoola 2 년 전
부모
커밋
a3fec11438
No account linked to committer's email address
3개의 변경된 파일8개의 추가작업 그리고 6개의 파일을 삭제
  1. 5
    3
      web/app/(shareLayout)/layout.tsx
  2. 2
    2
      web/app/components/share/chat/index.tsx
  3. 1
    1
      web/app/components/share/chatbot/index.tsx

+ 5
- 3
web/app/(shareLayout)/layout.tsx 파일 보기

children: React.ReactNode children: React.ReactNode
}> = ({ children }) => { }> = ({ children }) => {
return ( return (
<div className="min-w-[300px]">
<GA gaType={GaType.webapp} />
{children}
<div className=''>
<div className="min-w-[300px]">
<GA gaType={GaType.webapp} />
{children}
</div>
</div> </div>
) )
} }

+ 2
- 2
web/app/components/share/chat/index.tsx 파일 보기

return <Loading type='app' /> return <Loading type='app' />


return ( return (
<div className='bg-gray-100 flex w-full h-full'>
<div className='bg-gray-100'>
{!isInstalledApp && ( {!isInstalledApp && (
<Header <Header
title={siteInfo.title} title={siteInfo.title}
)} )}
{/* main */} {/* main */}
<div className={cn( <div className={cn(
isInstalledApp ? s.installedApp : '',
isInstalledApp ? s.installedApp : 'h-screen',
'flex-grow flex flex-col overflow-y-auto', 'flex-grow flex flex-col overflow-y-auto',
) )
}> }>

+ 1
- 1
web/app/components/share/chatbot/index.tsx 파일 보기



<div className={'flex bg-white overflow-hidden'}> <div className={'flex bg-white overflow-hidden'}>
<div className={cn( <div className={cn(
isInstalledApp ? s.installedApp : '',
isInstalledApp ? s.installedApp : 'h-[calc(100vh_-_3rem)]',
'flex-grow flex flex-col overflow-y-auto', 'flex-grow flex flex-col overflow-y-auto',
) )
}> }>

Loading…
취소
저장