Complete english version of site
This commit is contained in:
@@ -6,7 +6,14 @@ export type ContentProps = PropsWithChildren;
|
||||
|
||||
export function Content({ children }: ContentProps): ReactElement {
|
||||
return (
|
||||
<Box sx={{ width: { xs: '100%', md: '80%' }, margin: 'auto' }}>
|
||||
<Box
|
||||
sx={{
|
||||
width: { xs: '100%', md: '80%' },
|
||||
margin: 'auto',
|
||||
height: 'calc(100vh - 25px)',
|
||||
color: (theme) => theme.palette.text.primary,
|
||||
}}
|
||||
>
|
||||
<TopBar />
|
||||
{children}
|
||||
</Box>
|
||||
|
||||
Reference in New Issue
Block a user