@likec4/styles 1.27.1 → 1.27.2

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/styles.css CHANGED
@@ -899,6 +899,7 @@
899
899
  }
900
900
 
901
901
  .action-btn:is(:hover, [data-hover]) {
902
+ opacity: 1;
902
903
  color: var(--actionbtn-color-hovered-btn);
903
904
  --ai-bg: var(--actionbtn-bg-hovered-btn);
904
905
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@likec4/styles",
3
3
  "license": "MIT",
4
- "version": "1.27.1",
4
+ "version": "1.27.2",
5
5
  "bugs": "https://github.com/likec4/likec4/issues",
6
6
  "homepage": "https://likec4.dev",
7
7
  "author": "Denis Davydkov <denis@davydkov.com>",
@@ -73,8 +73,8 @@
73
73
  "nano-spawn": "^0.2.0",
74
74
  "unbuild": "^3.5.0",
75
75
  "typescript": "^5.8.2",
76
- "@likec4/style-preset": "1.27.1",
77
- "@likec4/tsconfig": "1.27.1"
76
+ "@likec4/style-preset": "1.27.2",
77
+ "@likec4/tsconfig": "1.27.2"
78
78
  },
79
79
  "scripts": {
80
80
  "typecheck": "tsc --noEmit",
package/preset.d.mts CHANGED
@@ -2337,6 +2337,7 @@ const actionBtn = defineRecipe({
2337
2337
  "--ai-bg": `var(--actionbtn-bg-hovered)`
2338
2338
  },
2339
2339
  _hover: {
2340
+ opacity: 1,
2340
2341
  color: "var(--actionbtn-color-hovered-btn)",
2341
2342
  "--ai-bg": `var(--actionbtn-bg-hovered-btn)`
2342
2343
  },
package/preset.mjs CHANGED
@@ -2337,6 +2337,7 @@ const actionBtn = defineRecipe({
2337
2337
  "--ai-bg": `var(--actionbtn-bg-hovered)`
2338
2338
  },
2339
2339
  _hover: {
2340
+ opacity: 1,
2340
2341
  color: "var(--actionbtn-color-hovered-btn)",
2341
2342
  "--ai-bg": `var(--actionbtn-bg-hovered-btn)`
2342
2343
  },