diff --git a/src/components/projects/Project.jsx b/src/components/projects/Project.jsx index d16f52c..406464a 100644 --- a/src/components/projects/Project.jsx +++ b/src/components/projects/Project.jsx @@ -2,6 +2,7 @@ /*global web3*/ import React, { useMemo, Fragment } from 'react' import { Link } from 'react-router-dom' +import ReactMarkdown from 'react-markdown' import Typography from '@material-ui/core/Typography' import Button from '@material-ui/core/Button' import withObservables from '@nozbe/with-observables' @@ -59,6 +60,10 @@ const styles = theme => ({ media: { objectFit: 'cover' }, + fullWidth: { + gridColumnStart: '1', + gridColumnEnd: '3', + }, secondRow: { gridColumnStart: '1', gridColumnEnd: '3', @@ -224,7 +229,7 @@ function Project({ classes, match, profile, transfers, pledges, projectAddedEven
{mediaType && - } + } {!mediaType &&
+
+ +
} ) }