@andreagiugni/tailwind-dashboard-ui 1.0.0 → 1.0.1

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
@@ -1214,8 +1214,8 @@ var Card = ({
1214
1214
  src: image,
1215
1215
  alt: imageAlt,
1216
1216
  className: cn(
1217
- "object-cover",
1218
- horizontal ? "h-full w-full sm:w-2/5 sm:max-w-[16rem]" : "h-48 w-full"
1217
+ "object-cover rounded-t-2xl",
1218
+ horizontal ? "h-full w-full sm:w-2/5 sm:max-w-[16rem] sm:rounded-l-2xl sm:rounded-tr-none" : "h-48 w-full"
1219
1219
  )
1220
1220
  }
1221
1221
  ) : null;
@@ -1223,7 +1223,7 @@ var Card = ({
1223
1223
  "div",
1224
1224
  {
1225
1225
  className: cn(
1226
- "overflow-hidden rounded-2xl border border-gray-200 bg-white dark:border-gray-800 dark:bg-white/[0.03]",
1226
+ "rounded-2xl border border-gray-200 bg-white dark:border-gray-800 dark:bg-white/[0.03]",
1227
1227
  horizontal && image && "flex flex-col sm:flex-row",
1228
1228
  className
1229
1229
  ),