@primer/doctocat-nextjs 0.0.0-20250619154533 → 0.0.0-20250619155353

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # @primer/doctocat-nextjs
2
2
 
3
- ## 0.0.0-20250619154533
3
+ ## 0.0.0-20250619155353
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Fake entry to force publishing
8
8
 
9
- ## 0.0.0-20250619154532
9
+ ## 0.0.0-20250619155352
10
10
 
11
11
  ### Patch Changes
12
12
 
@@ -1,5 +1,7 @@
1
1
  .Article {
2
2
  display: grid;
3
+ grid-template-areas: 'main';
4
+ grid-template-columns: 1fr;
3
5
  }
4
6
 
5
7
  .Article--withToc {
@@ -92,7 +92,7 @@ export function IndexCards({route, folderData}: IndexCardsProps) {
92
92
  return (
93
93
  <Grid.Column span={{xsmall: 12, small: 12, medium: 12, large: 6, xlarge: 4}} key={item.frontMatter.title}>
94
94
  <Link legacyBehavior passHref href={item.route}>
95
- <Card href="#" hasBorder>
95
+ <Card href="#" hasBorder fullWidth>
96
96
  <Card.Image src={thumbnailUrl} alt="" aspectRatio="4:3" />
97
97
  <Card.Heading>{item.frontMatter.title}</Card.Heading>
98
98
  {item.frontMatter.description && <Card.Description>{item.frontMatter.description}</Card.Description>}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primer/doctocat-nextjs",
3
- "version": "0.0.0-20250619154533",
3
+ "version": "0.0.0-20250619155353",
4
4
  "description": "A Next.js theme for building Primer documentation sites",
5
5
  "main": "index.js",
6
6
  "type": "module",