Skip to content

v2.3.0

Compare
Choose a tag to compare
@github-actions github-actions released this 04 Oct 11:47
· 8 commits to main since this release
9f94ab8

Minor Changes

  • c3aaec0: Allow multiple store-set within a rule

    #app {
      store-root: app;
      store-set: app first "Wilbur";
      store-set: app last "Phillips";
      --full-name: store-get(app, first) " " store-get(app, last);
      text: var(--full-name);
    }
  • 8573803: Allow multiple store-root on an element

    You can now set multiple stores on an element:

    #app {
      store-root: one, two;
      store-set: one name "Matthew";
      store-set: two name "Wilbur";
    }