UI change

This commit is contained in:
Joel Mathew Thomas
2025-03-18 16:26:35 +05:30
parent 84c848109f
commit 8b4d373b6a
+10 -2
View File
@@ -151,14 +151,22 @@ function ResultsPage() {
</Grid> </Grid>
</Grid> </Grid>
<Box sx={{ mt: 4, display: 'flex', justifyContent: 'space-between' }}> <Box
sx={{
mt: 4,
display: 'flex',
justifyContent: 'space-between',
gap: 2, // Adds spacing between buttons
flexWrap: 'wrap', // Ensures better behavior on smaller screens
}}
>
<Button variant="outlined" color="primary" onClick={() => navigate('/upload')}> <Button variant="outlined" color="primary" onClick={() => navigate('/upload')}>
Process Another File Process Another File
</Button> </Button>
<Button variant="contained" color="primary" onClick={() => navigate('/')}> <Button variant="contained" color="primary" onClick={() => navigate('/')}>
Back to Home Back to Home
</Button> </Button>
</Box> </Box>
</Paper> </Paper>
</Container> </Container>
); );