mirror of
https://github.com/labring/FastGPT.git
synced 2026-05-05 01:02:59 +08:00
fix app detail bg (#6172)
* fix app detail bg * remove code * fix * detail modal & icon position
This commit is contained in:
@@ -100,7 +100,7 @@ const DetailLogsModal = ({
|
||||
<MyBox
|
||||
display={'flex'}
|
||||
flexDirection={'column'}
|
||||
zIndex={3}
|
||||
zIndex={1000}
|
||||
position={['fixed', 'absolute']}
|
||||
top={[0, '2%']}
|
||||
right={0}
|
||||
|
||||
@@ -111,7 +111,7 @@ const SimpleEdit = () => {
|
||||
);
|
||||
|
||||
return (
|
||||
<Flex h={'100%'} flexDirection={'column'} px={[3, 0]} pr={[3, 3]} bg={'myGray.25'}>
|
||||
<Flex h={'100%'} flexDirection={'column'} px={[3, 0]} pr={[3, 3]}>
|
||||
<Header
|
||||
appForm={appForm}
|
||||
forbiddenSaveSnapshot={forbiddenSaveSnapshot}
|
||||
|
||||
@@ -51,7 +51,7 @@ const AppDetail = () => {
|
||||
return (
|
||||
<>
|
||||
<NextHead title={appDetail.name} icon={appDetail.avatar}></NextHead>
|
||||
<Box h={'100%'} position={'relative'}>
|
||||
<Box h={'100%'} position={'relative'} bg={'myGray.25'}>
|
||||
{!appDetail._id ? (
|
||||
<Loading fixed={false} />
|
||||
) : (
|
||||
|
||||
Reference in New Issue
Block a user