-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure namespace reset with escaped
*
works (#15603)
This PR fixes an issue if you want to reset a namespace like: ```css @theme { --color-*: initial; } ``` That some formatters such as Biome won't allow this syntax. To solve that, this PR allows you to use an escaped `*` character. ```css @theme { --color-\*: initial; } ``` Fixes: #15602
- Loading branch information
1 parent
ae8fb14
commit 3b03395
Showing
3 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters