diff --git a/src/components/projects/ListProjects.jsx b/src/components/projects/ListProjects.jsx index 7c3a8ea..b70f3d2 100644 --- a/src/components/projects/ListProjects.jsx +++ b/src/components/projects/ListProjects.jsx @@ -2,6 +2,7 @@ import React, { Fragment, useContext } from 'react' import { withStyles } from '@material-ui/core/styles' import { Link } from 'react-router-dom' import Typography from '@material-ui/core/Typography' +import Divider from '@material-ui/core/Divider' import classnames from 'classnames' import { useQuery } from '@apollo/react-hooks' import styles from './styles/ListProjects' @@ -81,6 +82,7 @@ function ListProjects({ classes }) { ) })} + ) } diff --git a/src/components/projects/styles/ListProjects.js b/src/components/projects/styles/ListProjects.js index 4d04d6f..f1d19da 100644 --- a/src/components/projects/styles/ListProjects.js +++ b/src/components/projects/styles/ListProjects.js @@ -38,6 +38,9 @@ const styles = theme => ({ cellColor: { background: '#F5F7F8' }, + divider: { + gridColumn: '2 / 48' + }, fullWidth: { gridColumn: '1 / 49' },