fix app detail bg (#6172)

* fix app detail bg

* remove code

* fix

* detail modal & icon position
This commit is contained in:
heheer
2025-12-31 16:39:22 +08:00
committed by GitHub
parent bc2b1cdca4
commit 34241ec774
81 changed files with 146 additions and 151 deletions
@@ -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}
+1 -1
View File
@@ -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} />
) : (