Skip to content

Commit 3ecfa9d

Browse files
committed
492: Small styling change to Admin page
1 parent cd8d834 commit 3ecfa9d

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/client/src/pages/Admin.js

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,19 @@ export default function Admin(props) {
174174
</Grid>
175175
</Grid>
176176
<Grid container item direction="column" spacing={3} sm={6}>
177+
<Grid item>
178+
<Paper style={{ padding: 5 }}>
179+
<CardContent>
180+
<Typography variant="h5" styles={{paddingBottom: 5}}>Run New Analysis</Typography>
181+
<form onSubmit={handleExecute}>
182+
<Button type="submit" variant="contained" color="primary"
183+
disabled={statistics === 'Running'}>
184+
Run Data Analysis
185+
</Button>
186+
</form>
187+
</CardContent>
188+
</Paper>
189+
</Grid>
177190
<Grid item>
178191
<Typography variant="h5">Last Match Analysis</Typography>
179192
</Grid>
@@ -206,19 +219,6 @@ export default function Admin(props) {
206219
</TableContainer>
207220
}
208221
</Grid>
209-
<Grid item>
210-
<Paper style={{padding: 5, marginTop: 10}}>
211-
<CardContent>
212-
<Typography variant="h5" styles={{paddingBottom: 5}}>Run New Analysis</Typography>
213-
<form onSubmit={handleExecute}>
214-
<Button type="submit" variant="contained" color="primary"
215-
disabled={statistics === 'Running'}>
216-
Run Data Analysis
217-
</Button>
218-
</form>
219-
</CardContent>
220-
</Paper>
221-
</Grid>
222222

223223
</Grid>
224224
</Grid>

0 commit comments

Comments
 (0)