Skip to content
Snippets Groups Projects
Commit 45ecb497 authored by Chris Beer's avatar Chris Beer
Browse files

Use a consistent root styled component for the workspace

parent 7306b0ed
No related branches found
No related tags found
1 merge request!19Draft: Merge video support into mui5
...@@ -3,7 +3,6 @@ import PropTypes from 'prop-types'; ...@@ -3,7 +3,6 @@ import PropTypes from 'prop-types';
import { styled } from '@mui/material/styles'; import { styled } from '@mui/material/styles';
import classNames from 'classnames'; import classNames from 'classnames';
import Grid from '@mui/material/Grid'; import Grid from '@mui/material/Grid';
import Paper from '@mui/material/Paper';
import Typography from '@mui/material/Typography'; import Typography from '@mui/material/Typography';
import { visuallyHidden } from '@mui/utils'; import { visuallyHidden } from '@mui/utils';
import Window from '../containers/Window'; import Window from '../containers/Window';
...@@ -71,11 +70,7 @@ export class Workspace extends Component { ...@@ -71,11 +70,7 @@ export class Workspace extends Component {
const { t } = this.props; const { t } = this.props;
return ( return (
<Paper <Root>
style={{
height: '100%',
}}
>
<Grid <Grid
alignItems="center" alignItems="center"
container container
...@@ -96,7 +91,7 @@ export class Workspace extends Component { ...@@ -96,7 +91,7 @@ export class Workspace extends Component {
</Typography> </Typography>
</Grid> </Grid>
</Grid> </Grid>
</Paper> </Root>
); );
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment