fix: responsiveness of sideNav component

This commit is contained in:
Koosha Lahouti
2025-08-05 17:15:35 -07:00
parent 512b1ad1cf
commit b09d7c96aa
9 changed files with 511 additions and 435 deletions

View File

@@ -6,6 +6,7 @@ import { ProfileImage } from './personlInformation/ProfileImage';
import { InfoRowDisplay } from './personlInformation/InfoRowDisplay';
import { InfoRowEdit } from './personlInformation/InfoRowEdit';
import Logo from '@/components/Logo';
import { PageWrapper } from '../PageWrapper';
export function PersonalInformation() {
const { t } = useTranslation('profileSetting');
@@ -39,7 +40,7 @@ export function PersonalInformation() {
};
return (
<Box sx={{ backgroundColor: 'background.paper' }}>
<PageWrapper>
<Box
sx={{
display: 'flex',
@@ -138,6 +139,6 @@ export function PersonalInformation() {
)}
</Box>
</CardContainer>
</Box>
</PageWrapper>
);
}