File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ .loader-main {
2+ display : flex;
3+ align-items : center;
4+ }
5+ .loader-items {
6+ position : relative;
7+ margin : 10px 25px ;
8+ }
9+ .loader-btn {
10+ margin-left : 20px ;
11+ background-color : # 1e88e5 ;
12+ color : white;
13+ font-weight : 200 ;
14+ }
Original file line number Diff line number Diff line change 11import React from 'react' ;
22import BeatLoader from 'react-spinners/BeatLoader' ;
33import ParentModal from './ParentModal' ;
4+ import './Loader.css' ;
45
56const Loader = ( { superState } ) => (
6- < ParentModal ModelOpen = { superState . loader } title = "Wait........" >
7- < BeatLoader color = "#36d7b7" />
7+ < ParentModal ModelOpen = { superState . loader } title = "Wait.... The function is being executed" >
8+ < div className = "loader-main" >
9+ < BeatLoader color = "#36d7b7" className = "loader-items" />
10+ < BeatLoader color = "#36d7b7" className = "loader-items" />
11+ < BeatLoader color = "#36d7b7" className = "loader-items" />
12+ < BeatLoader color = "#36d7b7" className = "loader-items" />
13+ < BeatLoader color = "#36d7b7" className = "loader-items" />
14+ < BeatLoader color = "#36d7b7" className = "loader-items" />
15+ < BeatLoader color = "#36d7b7" className = "loader-items" />
16+ </ div >
17+ < br />
18+ < br />
19+ { superState . dockerCheck && superState . graphs [ superState . curGraphIndex ] . built
20+ ? < button className = "btn loader-btn" type = "button" > STOP Docker Build</ button >
21+ : '' }
822 </ ParentModal >
923) ;
1024
You can’t perform that action at this time.
0 commit comments