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 7066b27 commit 29dfb0fCopy full SHA for 29dfb0f
packages/backend/src/tailwind/builderImpl/tailwindSize.ts
@@ -14,7 +14,11 @@ export const tailwindSizePartial = (
14
: null) ?? node.parent;
15
16
let w = "";
17
- if (typeof size.width === "number") {
+ if (
18
+ typeof size.width === "number" &&
19
+ 'layoutSizingHorizontal' in node &&
20
+ node.layoutSizingHorizontal === 'FIXED'
21
+ ) {
22
w = `w-${pxToLayoutSize(size.width)}`;
23
} else if (size.width === "fill") {
24
if (
0 commit comments