This commit is contained in:
2024-09-12 05:41:57 +03:00
parent 99f2ae1885
commit f032016b83
4 changed files with 42 additions and 6 deletions

View File

@@ -60,7 +60,8 @@ export const AnnouncementItem = ({ message, messageData, setSelectedAnnouncement
<Box sx={{
display: "flex",
gap: '7px',
width: '100%'
width: '100%',
wordBreak: 'break-word'
}}>
<Avatar
sx={{

View File

@@ -11,7 +11,7 @@ import { LoadingSnackbar } from '../Snackbar/LoadingSnackbar';
import { getNameInfo } from '../Group/Group';
import { Spacer } from '../../common/Spacer';
import { CustomizedSnackbars } from '../Snackbar/Snackbar';
import { getBaseApiReactSocket } from '../../App';
import { getBaseApiReactSocket, isMobile } from '../../App';
@@ -226,7 +226,7 @@ const clearEditorContent = () => {
return (
<div style={{
height: '100vh',
height: isMobile ? '100%' : '100vh',
display: 'flex',
flexDirection: 'column',
width: '100%'