We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 579d580 commit 1142848Copy full SHA for 1142848
packages/tailwindcss-language-service/src/util/stringify.ts
@@ -66,10 +66,7 @@ export function stringifyCss(
66
.join('\n')
67
return `${acc}${i === 0 ? '' : '\n'}${propStr}`
68
}, '')
69
- css += `${indentStr}${augmentClassName(
70
- className,
71
- obj
72
- )} {\n${decls}\n${indentStr}}`
+ css += `${indentStr}${augmentClassName(className, obj)} {\n${decls}\n${indentStr}}`
73
74
for (let i = context.length - 1; i >= 0; i--) {
75
css += `${indent.repeat(i)}\n}`
0 commit comments