Wrap control buttons on DefaultPage

This commit is contained in:
Yasa Akbulut 2020-03-13 11:52:33 +01:00 committed by Jannis Mattheis
parent 0f7c7dd717
commit 07b0226412
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ interface IProps {
const DefaultPage: FC<IProps> = ({title, rightControl, maxWidth = 700, children}) => (
<main style={{margin: '0 auto', maxWidth}}>
<Grid container spacing={4}>
<Grid item xs={12} style={{display: 'flex'}}>
<Grid item xs={12} style={{display: 'flex', flexWrap: 'wrap'}}>
<Typography variant="h4" style={{flex: 1}}>
{title}
</Typography>