@caseparts-org/caseblocks 0.0.6 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -43,4 +43,19 @@ button {
|
|
|
43
43
|
}
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
### CSS Variable Autocomplete
|
|
47
|
+
|
|
48
|
+
1. Install `CSS Variable Autocomplete` vs code extension
|
|
49
|
+
2. Go to VS Code settings (Ctrl + ,)
|
|
50
|
+
3. Look for a setting like "Css Variables: Lookup Files" or similar
|
|
51
|
+
4. Add the path to your tokens.css file
|
|
52
|
+
|
|
53
|
+
```json
|
|
54
|
+
{
|
|
55
|
+
"cssVariables.lookupFiles": [
|
|
56
|
+
"node_modules/@caseparts-org/caseblocks/dist/styles/tokens.css"
|
|
57
|
+
]
|
|
58
|
+
}
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+

|