diff --git a/app/components/projects/BackProject.jsx b/app/components/projects/BackProject.jsx index ac2b33c..d2e138f 100644 --- a/app/components/projects/BackProject.jsx +++ b/app/components/projects/BackProject.jsx @@ -1,11 +1,32 @@ import React, { useMemo, useState, useEffect } from 'react' +import { withStyles } from '@material-ui/core/styles' -function BackProject({match}) { +const styles = theme => ({ + root: { + display: 'grid', + gridTemplateColumns: 'repeat(12, [col] 1fr)', + gridTemplateRows: 'repeat(5, [row] auto)', + gridColumnGap: '1em', + gridRowGap: '36px', + margin: '1.75rem 4.5rem', + fontFamily: theme.typography.fontFamily + }, + title: { + fontSize: '2.5rem', + gridColumnStart: '3', + gridColumnEnd: '10' + } +}) + +function BackProject({classes, match}) { const projectId = match.params.id console.log({projectId}) return ( -