constrain width of project cards
This commit is contained in:
parent
ff5b3b5ab0
commit
568d3dacaf
|
@ -203,7 +203,7 @@ const ProjectCard = withDatabase(withObservables(['project'], ({ database, proje
|
|||
}))(RawProjectCard))
|
||||
|
||||
function GridView({classes, projects, favorites, setFavorites}) {
|
||||
return (<Grid container spacing={40}>
|
||||
return (<Grid container spacing={40} style={{ maxWidth: '100vw' }}>
|
||||
{projects.map((project, index) => {
|
||||
if (!project.manifest) {
|
||||
return ''
|
||||
|
|
Loading…
Reference in New Issue