@polastack/design-system 0.1.16 → 0.1.17

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/dist/index.js CHANGED
@@ -637,7 +637,7 @@ var CardHeader = React10.forwardRef(({ className, ...props }, ref) => /* @__PURE
637
637
  "div",
638
638
  {
639
639
  ref,
640
- className: cn("flex flex-col gap-1.5 p-4 sm:p-6", className),
640
+ className: cn("flex flex-col gap-1.5 p-6", className),
641
641
  ...props
642
642
  }
643
643
  ));
@@ -660,13 +660,13 @@ var CardDescription = React10.forwardRef(({ className, ...props }, ref) => /* @_
660
660
  }
661
661
  ));
662
662
  CardDescription.displayName = "CardDescription";
663
- var CardContent = React10.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx9("div", { ref, className: cn("p-4 pt-0 sm:p-6 sm:pt-0", className), ...props }));
663
+ var CardContent = React10.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx9("div", { ref, className: cn("p-6 pt-0", className), ...props }));
664
664
  CardContent.displayName = "CardContent";
665
665
  var CardFooter = React10.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx9(
666
666
  "div",
667
667
  {
668
668
  ref,
669
- className: cn("flex items-center p-4 pt-0 sm:p-6 sm:pt-0", className),
669
+ className: cn("flex items-center p-6 pt-0", className),
670
670
  ...props
671
671
  }
672
672
  ));