Skip to content

Commit

Permalink
Merge branch 'main' into feat/table-component
Browse files Browse the repository at this point in the history
  • Loading branch information
hamza14khan authored Dec 3, 2024
2 parents 87810ea + c19094a commit 6b9a48d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/docs/content/3-components/2-library/summary-list.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ libraries:

### Default

<ComponentContainer className="gi-p-2">
<ComponentContainer className="gi-p-2 max-w-xs">
<SummaryList>
<SummaryListRow label="Name">
<SummaryListValue>John Smith</SummaryListValue>
Expand Down
5 changes: 4 additions & 1 deletion apps/docs/src/components/document/common/mdx.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,10 @@ const documentComponents: MDXComponents = {
PhaseBanner: (props) => <PhaseBanner {...props} />,
Blockquote: (props) => <Blockquote {...props} />,
ComponentContainer: (props) => (
<div {...props} className={cn('my-xl stroke-gray-950', props.className)} />
<div
{...props}
className={cn('my-xl stroke-gray-950 not-prose', props.className)}
/>
),
Alert: (props) => <Alert {...props} />,
Toast: (props) => <Toast {...props} />,
Expand Down

0 comments on commit 6b9a48d

Please sign in to comment.