This commit is contained in:
2025-03-16 22:42:28 +02:00
committed by Nicola Benaglia
parent 63f05e4c99
commit c516c36425
3 changed files with 62 additions and 11 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

@@ -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',
}}
>