Commit 4a9723c
committed
keep invalid data invalid
`space-x-[0deg]` stays as:
```css
.space-x-\[0deg\] {
:where(& > :not(:last-child)) {
--tw-space-x-reverse: 0;
margin-inline-start: calc(0deg * var(--tw-space-x-reverse));
margin-inline-end: calc(0deg * calc(1 - var(--tw-space-x-reverse)));
}
}
```
And will not be optimized to just:
```css
.space-x-\[0deg\] {
:where(& > :not(:last-child)) {
--tw-space-x-reverse: 0;
margin-inline: 0;
}
}
```1 parent f1aeba3 commit 4a9723c
1 file changed
Lines changed: 7 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
| 22 | + | |
22 | 23 | | |
23 | 24 | | |
24 | 25 | | |
| |||
2126 | 2127 | | |
2127 | 2128 | | |
2128 | 2129 | | |
2129 | | - | |
| 2130 | + | |
| 2131 | + | |
| 2132 | + | |
2130 | 2133 | | |
2131 | 2134 | | |
2132 | 2135 | | |
| |||
2157 | 2160 | | |
2158 | 2161 | | |
2159 | 2162 | | |
2160 | | - | |
| 2163 | + | |
| 2164 | + | |
| 2165 | + | |
2161 | 2166 | | |
2162 | 2167 | | |
2163 | 2168 | | |
| |||
0 commit comments