File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -53,16 +53,16 @@ export const description = "Utilities for controlling an element's margin.";
53
53
` ${prefix }-px ` ,
54
54
dedent ` & > :not(:last-child) {
55
55
--tw-${prefix }-reverse: 0;
56
- ${property }-start: calc(calc(var(--spacing) * 1px) * var(--tw-${prefix }-reverse));
57
- ${property }-end: calc(calc(var(--spacing) * 1px) * calc(1 - var(--tw-${prefix }-reverse)));
56
+ ${property }-start: calc(1px * var(--tw-${prefix }-reverse));
57
+ ${property }-end: calc(1px * calc(1 - var(--tw-${prefix }-reverse)));
58
58
}; ` ,
59
59
],
60
60
[
61
61
` -${prefix }-px ` ,
62
62
dedent ` & > :not(:last-child) {
63
63
--tw-${prefix }-reverse: 0;
64
- ${property }-start: calc(calc(var(--spacing) * - 1px) * var(--tw-${prefix }-reverse));
65
- ${property }-end: calc(calc(var(--spacing) * - 1px) * calc(1 - var(--tw-${prefix }-reverse)));
64
+ ${property }-start: calc(- 1px * var(--tw-${prefix }-reverse));
65
+ ${property }-end: calc(- 1px * calc(1 - var(--tw-${prefix }-reverse)));
66
66
}; ` ,
67
67
],
68
68
[
You can’t perform that action at this time.
0 commit comments