mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-04-23 19:37:52 +00:00
fix bugs
This commit is contained in:
parent
7205f8c9ad
commit
c8fb4974a7
@ -344,8 +344,32 @@ const clearEditorContent = () => {
|
|||||||
height: isMobile ? '100%' : '100vh',
|
height: isMobile ? '100%' : '100vh',
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
flexDirection: 'column',
|
flexDirection: 'column',
|
||||||
width: '100%'
|
width: '100%',
|
||||||
|
background: !isMobile && 'var(--bg-2)'
|
||||||
}}>
|
}}>
|
||||||
|
{!isMobile && (
|
||||||
|
<Box onClick={close} sx={{
|
||||||
|
display: 'flex',
|
||||||
|
alignItems: 'center',
|
||||||
|
gap: '5px',
|
||||||
|
cursor: 'pointer',
|
||||||
|
padding: '4px 6px',
|
||||||
|
width: 'fit-content',
|
||||||
|
borderRadius: '3px',
|
||||||
|
background: 'rgb(35, 36, 40)',
|
||||||
|
margin: '10px 0px',
|
||||||
|
alignSelf: 'center'
|
||||||
|
}}>
|
||||||
|
<ArrowBackIcon sx={{
|
||||||
|
color: 'white',
|
||||||
|
fontSize: isMobile ? '20px' : '20px'
|
||||||
|
}}/>
|
||||||
|
<Typography sx={{
|
||||||
|
color: 'white',
|
||||||
|
fontSize: isMobile ? '14px' : '14px'
|
||||||
|
}}>Close Direct Chat</Typography>
|
||||||
|
</Box>
|
||||||
|
)}
|
||||||
{isMobile && (
|
{isMobile && (
|
||||||
<Box
|
<Box
|
||||||
sx={{
|
sx={{
|
||||||
|
@ -2202,6 +2202,7 @@ export const Group = ({
|
|||||||
{mobileViewModeKeepOpen === "messaging" && renderDirects()}
|
{mobileViewModeKeepOpen === "messaging" && renderDirects()}
|
||||||
{newChat && (
|
{newChat && (
|
||||||
<>
|
<>
|
||||||
|
{isMobile && (
|
||||||
<Box
|
<Box
|
||||||
sx={{
|
sx={{
|
||||||
display: "flex",
|
display: "flex",
|
||||||
@ -2255,6 +2256,7 @@ export const Group = ({
|
|||||||
</Box>
|
</Box>
|
||||||
</Box>
|
</Box>
|
||||||
</Box>
|
</Box>
|
||||||
|
)}
|
||||||
<Box
|
<Box
|
||||||
sx={{
|
sx={{
|
||||||
position: "absolute",
|
position: "absolute",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user