margo-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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "margo-ui",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A small React UI kit built on Tailwind CSS v4 design tokens, themeable through plain CSS custom properties.",
5
5
  "keywords": [
6
6
  "react",
@@ -6,7 +6,7 @@ import type { CSSProperties, ElementType, ReactNode } from "react";
6
6
  import type { TagProps } from "react-renderable";
7
7
 
8
8
  const CLASSNAME_BASE = `group/button flex h-8 w-fit shrink-0 items-center px-2 rounded-lg border-2 text-on-main
9
- hover:border-on-main hover:text-on-main
9
+ hover:border-on-main hover:text-on-main focus-visible:margo-border-gradient-primary
10
10
  focus-visible:outline focus-visible:outline-offset-1 focus-visible:outline-on-main`;
11
11
  const CLASSNAME_SURFACE = "border-border bg-main";
12
12
  const CLASSNAME_ICON = "relative z-10 flex size-4 min-w-0 shrink-0 items-center justify-center [direction:ltr]";
@@ -4,7 +4,7 @@
4
4
 
5
5
  @keyframes margo-ripple {
6
6
  from {
7
- opacity: 0.4;
7
+ opacity: 0.5;
8
8
  transform: translate(-50%, -50%) scale(0);
9
9
  }
10
10