mirror of
https://github.com/Qortal/qortal-mobile.git
synced 2025-04-24 20:07:52 +00:00
fix overflow
This commit is contained in:
parent
aeea8330e9
commit
6ff19261e0
@ -35,8 +35,8 @@ const AppViewerContainer = React.forwardRef(({ app, isSelected, hide, customHeig
|
||||
</>
|
||||
}
|
||||
style={{
|
||||
position: (!isSelected || hide) && 'absolute',
|
||||
left: (!isSelected || hide) && '10000000px',
|
||||
position: (!isSelected || hide) && 'fixed',
|
||||
left: (!isSelected || hide) && '-10000000px',
|
||||
height: customHeight ? customHeight : !isMobile ? '100vh' : `calc(${rootHeight} - 60px - 45px)`,
|
||||
border: 'none',
|
||||
width: '100%',
|
||||
|
@ -292,8 +292,8 @@ export const Apps = ({ mode, setMode, show , myName}) => {
|
||||
return (
|
||||
<AppsParent
|
||||
sx={{
|
||||
position: !show && 'absolute',
|
||||
left: !show && '10000000px',
|
||||
position: !show && 'fixed',
|
||||
left: !show && '-10000000px',
|
||||
}}
|
||||
>
|
||||
{mode !== "viewer" && !selectedTab && <Spacer height="30px" />}
|
||||
|
Loading…
x
Reference in New Issue
Block a user