Skip to content

@vanilla-extract/[email protected]

Choose a tag to compare

@seek-oss-ci seek-oss-ci released this 21 Sep 01:20
· 312 commits to master since this release
58f3ca2

Minor Changes

  • #827 9cfb9a1 Thanks @mattcompiles! - Add automatic debug IDs

    Automatic debug IDs allow your styles and other identifiers (e.g. CSS Vars, keyframes, etc) to have names that more closely reflect your source code when in development. This makes it easier to understand how the CSS output links to your source code.

    // styles.css.ts
    
    // redBox ~= 'styles_redBox_asdfgj'
    const redBox = style({
      background: 'red',
    });

Patch Changes