Skip to content

rainbow-sprinkles@0.17.0

Compare
Choose a tag to compare
@github-actions github-actions released this 10 Jul 17:18
· 22 commits to main since this release
9f8d422

Minor Changes

  • 3731e6a: Support assigning properties to layers via @layer option on defineProperties

    Example usage:

    // sprinkles.css.ts
    import { defineProperties } from 'rainbow-sprinkles';
    import { layer } from '@vanilla-extract/css';
    
    export const sprinklesLayer = layer();
    
    const properties = defineProperties({
      '@layer': sprinklesLayer,
      // etc.
    });