We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebc9bb7 commit 021c531Copy full SHA for 021c531
.changeset/large-rules-stay.md
@@ -0,0 +1,5 @@
1
+---
2
+"@plextv/react-lightning-plugin-css-transform": patch
3
4
+
5
+fix(plugin-css): Fix a bug where zero value for transforms weren't working properly
packages/plugin-css-transform/src/utils/parseTransform.ts
@@ -28,7 +28,7 @@ export function parseTransform(
28
>;
29
30
for (const t of Object.keys(originalTranform)) {
31
- if (!originalTranform[t]) {
+ if (originalTranform[t] == null) {
32
continue;
33
}
34
0 commit comments