diff options
author | Eugene <eug-vs@keemail.me> | 2020-01-28 19:56:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-28 19:56:24 +0000 |
commit | 547a6101f3ec0d01680cd14bf74c9a8386b9a835 (patch) | |
tree | 2ffa01673377d33af49ea8dbc317cde6f2bf0a42 /src/components/SolutionCard | |
parent | 4486c9f47ab4f9ba76ac09fab6bd8dd41e08cf7a (diff) | |
parent | 1ea6ae2f80e5e3f60ad89b4d6d02281c817cee43 (diff) | |
download | chrono-cube-ui-547a6101f3ec0d01680cd14bf74c9a8386b9a835.tar.gz |
Merge pull request #47 from Eug-VS/benzin
Migrate to BENZIN
Diffstat (limited to 'src/components/SolutionCard')
-rw-r--r-- | src/components/SolutionCard/SolutionCard.js | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/src/components/SolutionCard/SolutionCard.js b/src/components/SolutionCard/SolutionCard.js index 8252347..fdd4bdf 100644 --- a/src/components/SolutionCard/SolutionCard.js +++ b/src/components/SolutionCard/SolutionCard.js @@ -15,6 +15,7 @@ import { import { makeStyles } from '@material-ui/core/styles'; import TimerIcon from '@material-ui/icons/Timer'; import MoreVertIcon from '@material-ui/icons/MoreVert'; +import DeleteIcon from '@material-ui/icons/Delete'; import { del } from '../../requests'; @@ -30,12 +31,17 @@ const DATE_FORMAT = { const useStyles = makeStyles(theme => ({ root: { padding: theme.spacing(1), + background: theme.palette.background.elevation2, '& .MuiTypography-h3': { - color: theme.palette.secondary.main, margin: theme.spacing(2), }, }, + menu: { + '& ul': { + background: theme.palette.background.elevation3, + } + }, })); const SolutionCard = ({ data, removeThisCard }) => { @@ -61,7 +67,7 @@ const SolutionCard = ({ data, removeThisCard }) => { }; return ( - <Card elevation={5} className={classes.root}> + <Card className={classes.root}> <CardHeader avatar={ author === 'anonymous'? @@ -82,8 +88,12 @@ const SolutionCard = ({ data, removeThisCard }) => { open={Boolean(anchorEl)} keepMounted onClose={handleClose} + className={classes.menu} > - <MenuItem onClick={handleDelete}>Delete</MenuItem> + <MenuItem onClick={handleDelete}> + <DeleteIcon /> + Delete + </MenuItem> </Menu> <CardContent> <Grid container direction="row" justify="center" alignItems="center"> @@ -91,7 +101,7 @@ const SolutionCard = ({ data, removeThisCard }) => { <TimerIcon/> </Grid> <Grid item> - <Typography variant="h3"> + <Typography variant="h3" color="primary"> { data.result } </Typography> </Grid> |