This commit is contained in:
2025-03-16 22:42:28 +02:00
parent 37a54ce4a9
commit 667029f2c6
4 changed files with 153 additions and 12 deletions

View File

@@ -35,7 +35,8 @@ const AppViewerContainer = React.forwardRef(({ app, isSelected, hide, isDevMode,
</>
}
style={{
display: (!isSelected || hide) && 'none',
position: (!isSelected || hide) && 'absolute',
left: (!isSelected || hide) && '10000000px',
height: customHeight ? customHeight : !isMobile ? '100vh' : `calc(${rootHeight} - 60px - 45px)`,
border: 'none',
width: '100%',

View File

@@ -313,7 +313,8 @@ export const AppsDesktop = ({ mode, setMode, show , myName, goToHome, setDesktop
return (
<AppsParent
sx={{
display: !show && "none",
position: !show && 'absolute',
left: !show && '10000000px',
flexDirection: 'row'
}}
>

View File

@@ -216,8 +216,9 @@ export const AppsDevMode = ({ mode, setMode, show , myName, goToHome, setDesktop
return (
<AppsParent
sx={{
display: !show && "none",
flexDirection: 'row'
flexDirection: 'row' ,
position: !show && 'absolute',
left: !show && '10000000px',
}}
>