Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow
anchor-size(…)
in arbitrary values (#14393)
This PR fixes an issue where using `anchor-size` in arbitrary values resulted in the incorrect css. Input: `w-[calc(anchor-size(width)+8px)]` Output: ```css .w-\[calc\(anchor-size\(width\)\+8px\)\] { width: calc(anchor - size(width) + 8px); } ``` This PR fixes that, by generating the correct CSS: ```css .w-\[calc\(anchor-size\(width\)\+8px\)\] { width: calc(anchor-size(width) + 8px); } ```
- Loading branch information