diff options
author | eug-vs <eug-vs@keemail.me> | 2020-08-16 23:15:28 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-08-16 23:15:28 +0300 |
commit | 7f1a4ebde3ec32a703f04c989b4802b800f65c57 (patch) | |
tree | 07527fb5c603f38ed5daf7f23aa084b5a2c67645 /src/components | |
parent | 1db77b9cc96ee8f7c014f383ae71da0d225a6d6a (diff) | |
download | which-ui-7f1a4ebde3ec32a703f04c989b4802b800f65c57.tar.gz |
feat: add elevation to PollCard
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/PollCard/PollCard.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/PollCard/PollCard.tsx b/src/components/PollCard/PollCard.tsx index 749c6b7..80a1386 100644 --- a/src/components/PollCard/PollCard.tsx +++ b/src/components/PollCard/PollCard.tsx @@ -94,7 +94,7 @@ const PollCard: React.FC<PropTypes> = React.memo(({ poll, setPoll }) => { const dominant: Which = left.votes >= right.votes ? 'left' : 'right'; return ( - <Card> + <Card elevation={3}> <UserStrip user={author} info={date} /> <div className={classes.media}> <CardActionArea onDoubleClick={handleLeft} className={classes.media}> |