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.
—value([*])
1 parent d13afff commit 95bee5cCopy full SHA for 95bee5c
packages/tailwindcss-language-server/src/language/rewriting.ts
@@ -68,5 +68,10 @@ export function rewriteCss(css: string) {
68
69
css = css.replace(/(?<=\b(?:theme|config)\([^)]*)[.[\]]/g, '_')
70
71
+ // Ignore `*` in in --value and --modifier functions
72
+ css = css.replace(/--(value|modifier)\((.*?)\)/g, (match) => {
73
+ return match.replace(/[*]/g, ' ')
74
+ })
75
+
76
return css
77
}
0 commit comments