File tree Expand file tree Collapse file tree 1 file changed +8
-14
lines changed Expand file tree Collapse file tree 1 file changed +8
-14
lines changed Original file line number Diff line number Diff line change @@ -4,19 +4,15 @@ import CircularProgress from '@material-ui/core/CircularProgress';
44import { fade } from '@material-ui/core/styles/colorManipulator' ;
55
66const styles = theme => ( {
7- baseContainer : {
8- position : 'absolute' ,
9- top : 0 ,
10- left : 0 ,
11- height : '100%' ,
12- width : '100%' ,
13- zIndex : 110
14- } ,
157 overlay : {
168 display : 'table' ,
179 width : '100%' ,
1810 height : '100%' ,
19- backgroundColor : fade ( theme . palette . background . paper , 0.7 )
11+ backgroundColor : fade ( theme . palette . background . paper , 0.7 ) ,
12+ position : 'absolute' ,
13+ top : 0 ,
14+ left : 0 ,
15+ zIndex : 110
2016 } ,
2117 progressContainer : {
2218 display : 'table-cell' ,
@@ -31,11 +27,9 @@ class LoaderOverlay extends React.Component {
3127 render ( ) {
3228 const { classes } = this . props ;
3329 return (
34- < div className = { classes . baseContainer } >
35- < div className = { classes . overlay } >
36- < div className = { classes . progressContainer } >
37- < CircularProgress />
38- </ div >
30+ < div className = { classes . overlay } >
31+ < div className = { classes . progressContainer } >
32+ < CircularProgress />
3933 </ div >
4034 </ div >
4135 )
You can’t perform that action at this time.
0 commit comments