@trycompai/design-system 1.0.23 → 1.0.24

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trycompai/design-system",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "description": "Design system for Comp AI - shadcn-style components with Tailwind CSS",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -69,7 +69,7 @@ function SheetHeader({ ...props }: Omit<React.ComponentProps<'div'>, 'className'
69
69
  }
70
70
 
71
71
  function SheetBody({ ...props }: Omit<React.ComponentProps<'div'>, 'className'>) {
72
- return <div data-slot="sheet-body" className="flex-1 min-h-0 overflow-y-auto" {...props} />;
72
+ return <div data-slot="sheet-body" className="flex-1 min-h-0 overflow-y-auto px-1 -mx-1" {...props} />;
73
73
  }
74
74
 
75
75
  function SheetFooter({ ...props }: Omit<React.ComponentProps<'div'>, 'className'>) {