File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import Typography from '@material-ui/core/Typography';
6
6
import CloudUploadIcon from '@material-ui/icons/CloudUpload' ;
7
7
import { makeStyles } from '@material-ui/core/styles' ;
8
8
import CssBaseline from '@material-ui/core/CssBaseline' ;
9
+ import css from './index.module.less'
9
10
10
11
11
12
@@ -127,12 +128,13 @@ class PageTwo extends React.Component {
127
128
return (
128
129
< React . Fragment >
129
130
< div >
130
-
131
+ < div className = { css . buttonBox } >
131
132
< Container maxWidth = "sm" component = "main" className = { useStyles . heroContent } >
132
133
< Typography variant = "h4" align = "center" color = "textPrimary" component = "p" >
133
134
Select VFG file to generate visualisation directly.
134
135
</ Typography >
135
136
</ Container >
137
+ </ div >
136
138
137
139
138
140
< Container maxWidth = "sm" component = "main" >
@@ -145,7 +147,7 @@ class PageTwo extends React.Component {
145
147
</ Container >
146
148
147
149
< Container maxWidth = "sm" component = "main" marginTop = "50" >
148
- < div margin-top = "50" >
150
+ < div className = { css . buttonBox } >
149
151
< Button variant = "contained" color = "#224878" onClick = { this . handleOnClick } text-align = "left" > Cancel</ Button >
150
152
< Button variant = "contained" color = "primary" startIcon = { < CloudUploadIcon /> } onClick = { ( ) => {
151
153
// eslint-disable-next-line no-restricted-globals
Original file line number Diff line number Diff line change
1
+
2
+ .buttonBox {
3
+ /*
4
+ background: #fff;
5
+ */
6
+ display : flex ;
7
+ justify-content : space-around ;
8
+ padding : 20px ;
9
+ }
10
+
11
+ .textBox {
12
+ /*
13
+ background: #fff;
14
+ */
15
+ display : flex ;
16
+ justify-content : space-around ;
17
+ padding : 20px ;
18
+ }
You can’t perform that action at this time.
0 commit comments