@mbao01/common 0.9.8 → 0.9.9

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@mbao01/common",
3
3
  "private": false,
4
- "version": "0.9.8",
4
+ "version": "0.9.9",
5
5
  "type": "module",
6
6
  "author": "Ayomide Bakare",
7
7
  "license": "MIT",
@@ -11,7 +11,7 @@ export const getActivityIconClasses = cva(
11
11
  );
12
12
 
13
13
  export const getActivityLineClasses = cva(
14
- "absolute left-4 top-8 -bottom-0 w-px -translate-x-1/2 bg-base-300"
14
+ "absolute left-4 top-8 -bottom-0 w-px -translate-x-1/2 bg-base-content/10"
15
15
  );
16
16
 
17
17
  export const getActivityContentClasses = cva("flex min-w-0 flex-1 flex-col gap-0.5 pt-1");
@@ -1,5 +1,5 @@
1
- import { cn } from "../../utilities";
2
1
  import type { StatCardProps } from "./types";
2
+ import { cn } from "../../utilities";
3
3
 
4
4
  const StatCard = ({
5
5
  icon,
@@ -17,7 +17,7 @@ const StatCard = ({
17
17
  return (
18
18
  <div
19
19
  className={cn(
20
- "relative rounded-2xl border border-base-200 bg-base-100 px-6 pb-6 pt-10 shadow-sm",
20
+ "relative rounded-2xl border bg-base-100 px-6 pb-6 pt-10 shadow-sm",
21
21
  icon && "pt-14",
22
22
  className
23
23
  )}