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 222427b commit 67e02b6Copy full SHA for 67e02b6
packages/tailwindcss-language-server/src/language/rewriting.ts
@@ -73,7 +73,7 @@ export function rewriteCss(css: string) {
73
return match.replace(/[*]/g, '_')
74
})
75
76
- // Replace `--some-var-*` with `--some-var_`
+ // Replace `--some-var-*` with `--some-var-_`
77
css = css.replace(/--([a-zA-Z0-9]+)-[*]/g, '--$1_')
78
79
return css
0 commit comments