Skip to content

Commit

Permalink
replicate full span of last grid item
Browse files Browse the repository at this point in the history
  • Loading branch information
cody-dot-js committed Nov 2, 2023
1 parent 25bf167 commit b1aaf15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/IntegrationPageList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function IntegrationPageList({ name }: Props) {
return (
<ul className="m-0 mb-5 grid list-none grid-cols-2 gap-5 p-0" role="list">
{integration.docs.map((doc) => (
<li key={doc.path}>
<li className="last-of-type:col-span-full" key={doc.path}>
<NgrokCard
to={doc.path}
size="sm"
Expand Down
2 changes: 1 addition & 1 deletion src/components/IntegrationsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default function IntegrationsList() {
return (
<ul className="m-0 mb-5 grid list-none grid-cols-2 gap-5 p-0" role="list">
{integrations.map((integration) => (
<li key={integration.name}>
<li className="last-of-type:col-span-full" key={integration.name}>
<NgrokCard
to={integration.path}
size="sm"
Expand Down

1 comment on commit b1aaf15

@vercel
Copy link

@vercel vercel bot commented on b1aaf15 Nov 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

ngrok-docs – ./

ngrok-docs.vercel.app
ngrok-docs-ngrok-dev.vercel.app
ngrok-docs-git-main-ngrok-dev.vercel.app

Please sign in to comment.