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
No related branches found
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';
import { styled } from '@mui/material/styles';
import classNames from 'classnames';
import Grid from '@mui/material/Grid';
import Paper from '@mui/material/Paper';
import Typography from '@mui/material/Typography';
import { visuallyHidden } from '@mui/utils';
import Window from '../containers/Window';
......@@ -83,6 +84,11 @@ export class Workspace extends Component {
const { t } = this.props;
return (
<Paper
style={{
height: '100%',
}}
>
<Grid
alignItems="center"
container
......@@ -103,6 +109,7 @@ export class Workspace extends Component {
</Typography>
</Grid>
</Grid>
</Paper>
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment