From fc95e83e704ec054f551bae587a8a6e5bcaf4135 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Fri, 14 Aug 2020 15:36:17 +0300 Subject: feat: create Image and BackgroundImage components --- src/components/PollCard/PollCard.tsx | 29 +++++++++-------------------- 1 file changed, 9 insertions(+), 20 deletions(-) (limited to 'src/components/PollCard') diff --git a/src/components/PollCard/PollCard.tsx b/src/components/PollCard/PollCard.tsx index 689e872..a4c2144 100644 --- a/src/components/PollCard/PollCard.tsx +++ b/src/components/PollCard/PollCard.tsx @@ -1,15 +1,12 @@ import React from 'react'; import { makeStyles } from '@material-ui/core/styles'; -import { - Card, - CardActionArea, - CardMedia -} from '@material-ui/core/'; +import { Card, CardActionArea } from '@material-ui/core/'; import { Which, Poll } from 'which-types'; import { useSnackbar } from 'notistack'; import PercentageBar from './PercentageBar'; import UserStrip from '../UserStrip/UserStrip'; +import BackgroundImage from '../Image/BackgroundImage'; import { post } from '../../requests'; import { useAuth } from '../../hooks/useAuth'; @@ -27,12 +24,10 @@ const DATE_FORMAT = { }; const useStyles = makeStyles(theme => ({ - images: { + media: { + display: 'flex', height: theme.spacing(50) }, - imagesBlock: { - display: 'flex' - }, rateLine: { position: 'relative', width: '100%', @@ -101,19 +96,13 @@ const PollCard: React.FC = ({ poll, setPoll }) => { return ( -
- - +
+ + - - + +
-- cgit v1.2.3