style: improve design on waiting pages (#410)

* style: improve design on waiting pages

* chore: remove dead Restart page
This commit is contained in:
Cafe137
2022-06-20 15:34:19 +02:00
committed by GitHub
parent ce44ef78f4
commit 8775283508
4 changed files with 24 additions and 50 deletions
+10
View File
@@ -0,0 +1,10 @@
import { CircularProgress, Grid } from '@material-ui/core'
import { ReactElement } from 'react'
export function Waiting(): ReactElement {
return (
<Grid container direction="row" justifyContent="center" alignItems="center">
<CircularProgress size={240} style={{ color: '#ffffff' }} />
</Grid>
)
}