Skip to content

Commit 81fd0e2

Browse files
fix(sdk): remove nested var() in palette variables.css (#15)
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 36c4885 commit 81fd0e2

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@workflowbuilder/sdk': patch
3+
---
4+
5+
fix: remove nested `var(var(...))` from palette `variables.css` that broke strict CSS parsers (e.g. Lightning CSS / Next.js Turbopack).
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
:root {
2-
--wb-palette-item-outline-color-hover: var(var(--ax-node-stroke-primary-hover));
2+
--wb-palette-item-outline-color-hover: var(--ax-node-stroke-primary-hover);
33
--wb-palette-item-shad-color-hover: rgba(21, 21, 22, 0.1);
44
}

0 commit comments

Comments
 (0)