Bläddra i källkod

fix: styles (#1005)

tags/0.3.19
crazywoola 2 år sedan
förälder
incheckning
a3fec11438
Inget konto är kopplat till bidragsgivarens mejladress

+ 5
- 3
web/app/(shareLayout)/layout.tsx Visa fil

@@ -6,9 +6,11 @@ const Layout: FC<{
children: React.ReactNode
}> = ({ children }) => {
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>
)
}

+ 2
- 2
web/app/components/share/chat/index.tsx Visa fil

@@ -574,7 +574,7 @@ const Main: FC<IMainProps> = ({
return <Loading type='app' />

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

+ 1
- 1
web/app/components/share/chatbot/index.tsx Visa fil

@@ -510,7 +510,7 @@ const Main: FC<IMainProps> = ({

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

Laddar…
Avbryt
Spara