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 cfef771 commit 65a58deCopy full SHA for 65a58de
apps/builder/app/builder/features/style-panel/shared/css-fragment.tsx
@@ -45,7 +45,7 @@ const scopeCompletionSource: CompletionSource = (context) => {
45
const search = word.text;
46
const availableVariables = $availableVariables.get();
47
const options = availableVariables.map((varValue) => ({
48
- label: `--var(${varValue.value})`,
+ label: `var(--${varValue.value})`,
49
displayLabel: `--${varValue.value}`,
50
}));
51
const matches = matchSorter(options, search, {
0 commit comments