@underverse-ui/underverse 1.0.55 → 1.0.57
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/api-reference.json +1 -1
- package/dist/index.cjs +11 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +11 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -449,7 +449,7 @@ var Card = React2.forwardRef(
|
|
|
449
449
|
ref,
|
|
450
450
|
className: cn(
|
|
451
451
|
"group rounded-2xl md:rounded-3xl bg-card text-card-foreground transition-[transform,box-shadow,border-color,background-color] duration-300 ease-soft max-md:rounded-xl",
|
|
452
|
-
"border border-border shadow-sm backdrop-blur-sm",
|
|
452
|
+
"border border-border/50 shadow-sm backdrop-blur-sm",
|
|
453
453
|
hoverable && "md:hover:-translate-y-0.5 md:hover:border-primary/15 md:hover:shadow-md",
|
|
454
454
|
clickable && "cursor-pointer active:translate-y-px active:bg-accent/5 md:hover:bg-accent/5 md:hover:shadow-md",
|
|
455
455
|
className
|
|
@@ -490,7 +490,16 @@ var Card = React2.forwardRef(
|
|
|
490
490
|
description && /* @__PURE__ */ jsx3("p", { className: "min-w-0 text-sm md:text-base text-muted-foreground leading-relaxed break-words [overflow-wrap:anywhere]", children: description })
|
|
491
491
|
] }),
|
|
492
492
|
children && /* @__PURE__ */ jsx3("div", { className: cn("relative", defaultPaddingX, defaultPaddingY, contentClassName), children }),
|
|
493
|
-
footer && /* @__PURE__ */ jsx3(
|
|
493
|
+
footer && /* @__PURE__ */ jsx3(
|
|
494
|
+
"div",
|
|
495
|
+
{
|
|
496
|
+
className: cn(
|
|
497
|
+
"relative flex items-center p-4 md:p-6 pt-0 border-t border-border mt-4 max-md:mt-3 max-md:p-3 max-md:pt-0",
|
|
498
|
+
footerClassName
|
|
499
|
+
),
|
|
500
|
+
children: footer
|
|
501
|
+
}
|
|
502
|
+
)
|
|
494
503
|
] })
|
|
495
504
|
}
|
|
496
505
|
);
|