Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pascalduez/style-dictionary-transform-repro
https://github.com/amzn/style-dictionary/issues/1124
https://github.com/pascalduez/style-dictionary-transform-repro
Last synced: about 1 month ago
JSON representation
https://github.com/amzn/style-dictionary/issues/1124
- Host: GitHub
- URL: https://github.com/pascalduez/style-dictionary-transform-repro
- Owner: pascalduez
- Created: 2024-03-18T08:51:29.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-27T15:52:55.000Z (9 months ago)
- Last Synced: 2024-10-19T01:39:59.313Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# style-dictionary-transform-repro
### `style-dictionary < 3.9.0`
```css
:root {
--length-base: 4;
--length-3x: 12;
--length-2x: 8;
--length-1x: 4;
}
```### `style-dictionary >= 3.9.0`
```css
:root {
--length-base: 4;
--length-3x: var(--length-base);
--length-2x: var(--length-base);
--length-1x: var(--length-base);
}
```