Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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);
}
```