Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 344 Bytes

File metadata and controls

23 lines (19 loc) · 344 Bytes

style-dictionary-transform-repro

style-dictionary < 3.9.0

:root {
  --length-base: 4;
  --length-3x: 12;
  --length-2x: 8;
  --length-1x: 4;
}

style-dictionary >= 3.9.0

:root {
  --length-base: 4;
  --length-3x: var(--length-base);
  --length-2x: var(--length-base);
  --length-1x: var(--length-base);
}