@moontra/moonui 2.3.3 → 2.3.4

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.mjs CHANGED
@@ -997,10 +997,10 @@ var cardVariants = cva(
997
997
  glass: "border border-white/20 bg-white/10 backdrop-blur-md dark:border-gray-700/30 dark:bg-gray-800/10"
998
998
  },
999
999
  size: {
1000
- default: "p-6",
1001
- sm: "p-4",
1002
- lg: "p-8",
1003
- xl: "p-10"
1000
+ default: "",
1001
+ sm: "",
1002
+ lg: "",
1003
+ xl: ""
1004
1004
  },
1005
1005
  radius: {
1006
1006
  default: "rounded-lg",
@@ -1053,7 +1053,7 @@ var CardHeader = t.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
1053
1053
  "div",
1054
1054
  {
1055
1055
  ref,
1056
- className: cn("moonui-theme", "flex flex-col space-y-1.5", className),
1056
+ className: cn("moonui-theme", "flex flex-col space-y-1.5 p-6", className),
1057
1057
  ...props
1058
1058
  }
1059
1059
  ));
@@ -1076,13 +1076,13 @@ var CardDescription = t.forwardRef(({ className, ...props }, ref) => /* @__PURE_
1076
1076
  }
1077
1077
  ));
1078
1078
  CardDescription.displayName = "CardDescription";
1079
- var CardContent = t.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("moonui-theme", "pt-0", className), ...props }));
1079
+ var CardContent = t.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("moonui-theme", "p-6 pt-0", className), ...props }));
1080
1080
  CardContent.displayName = "CardContent";
1081
1081
  var CardFooter = t.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1082
1082
  "div",
1083
1083
  {
1084
1084
  ref,
1085
- className: cn("moonui-theme", "flex items-center pt-4", className),
1085
+ className: cn("moonui-theme", "flex items-center p-6 pt-0", className),
1086
1086
  ...props
1087
1087
  }
1088
1088
  ));