create-digigov-docs
Advanced tools
Comparing version 1.0.0-c768d137 to 1.0.0-e322b0cc
{ | ||
"name": "create-digigov-docs", | ||
"version": "1.0.0-c768d137", | ||
"version": "1.0.0-e322b0cc", | ||
"description": "Create a DigiGOV docs website that uses Docusaurus under the hood", | ||
@@ -30,6 +30,6 @@ "bin": "cli.js", | ||
"devDependencies": { | ||
"@digigov/cli": "1.0.0-c768d137", | ||
"@digigov/cli-docs": "1.0.0-c768d137", | ||
"@digigov/cli-test": "1.0.0-c768d137", | ||
"typescript": "4.2.3", | ||
"@digigov/cli": "1.0.0-e322b0cc", | ||
"@digigov/cli-docs": "1.0.0-e322b0cc", | ||
"@digigov/cli-test": "1.0.0-e322b0cc", | ||
"typescript": "4.7.2", | ||
"publint": "0.1.8" | ||
@@ -36,0 +36,0 @@ }, |
@@ -73,3 +73,3 @@ import React from 'react'; | ||
<Container> | ||
<Grid item xs={12} md={6}> | ||
<Grid item xs={12} md={8}> | ||
<Heading size="xl">{siteConfig.title}</Heading> | ||
@@ -81,7 +81,7 @@ <Paragraph>{siteConfig.tagline}</Paragraph> | ||
</Masthead> | ||
<Container cols={false}> | ||
<Container grid={false}> | ||
{features && features.length > 0 && ( | ||
<Grid container spacing={4}> | ||
{features.map((props, idx) => ( | ||
<Grid key={idx} item md={4}> | ||
<Grid key={idx} item xs={12} md={6}> | ||
<Feature {...props} /> | ||
@@ -88,0 +88,0 @@ </Grid> |
295168