fix: match paper & stack width

This commit is contained in:
Karishma Shukla
2025-05-25 20:36:23 +05:30
committed by GitHub
parent 5615642a76
commit c85bc1b500

View File

@@ -171,10 +171,10 @@ export const MainPage = ({ handleEditRecording, initialContent }: MainPageProps)
return ( return (
<Stack direction='row' spacing={0} sx={{ minHeight: '900px' }}> <Stack direction='row' spacing={0} sx={{ minHeight: '900px' }}>
<Stack sx={{ width: 240, flexShrink: 0 }}> <Stack sx={{ width: 250, flexShrink: 0 }}>
<MainMenu value={content} handleChangeContent={setContent} /> <MainMenu value={content} handleChangeContent={setContent} />
</Stack> </Stack>
{DisplayContent()} {DisplayContent()}
</Stack> </Stack>
); );
}; };