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

Wrap the empty workspace in paper to get the right background in dark mode

parent 7c0af085
Branches
No related tags found
2 merge requests!19Draft: Merge video support into mui5,!18Only nudge over badge content for the WindowListButton; it needs special...
...@@ -3,6 +3,7 @@ import PropTypes from 'prop-types'; ...@@ -3,6 +3,7 @@ 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';
...@@ -83,6 +84,11 @@ export class Workspace extends Component { ...@@ -83,6 +84,11 @@ export class Workspace extends Component {
const { t } = this.props; const { t } = this.props;
return ( return (
<Paper
style={{
height: '100%',
}}
>
<Grid <Grid
alignItems="center" alignItems="center"
container container
...@@ -103,6 +109,7 @@ export class Workspace extends Component { ...@@ -103,6 +109,7 @@ export class Workspace extends Component {
</Typography> </Typography>
</Grid> </Grid>
</Grid> </Grid>
</Paper>
); );
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment