add divider

This commit is contained in:
Barry Gitarts 2019-08-21 15:56:47 -04:00 committed by Barry G
parent 6ad0858b8b
commit efffefd8d0
2 changed files with 5 additions and 0 deletions

View File

@ -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 }) {
</Fragment>
)
})}
<Divider className={classes.divider} />
</div>
)
}

View File

@ -38,6 +38,9 @@ const styles = theme => ({
cellColor: {
background: '#F5F7F8'
},
divider: {
gridColumn: '2 / 48'
},
fullWidth: {
gridColumn: '1 / 49'
},