windicss/windicss

How to support all property?

peterroe opened this issue · 2 comments

Like this:

.all-revert {
  all: revert
}

Hey @peterroe ,

If you reference the example here:
https://windicss.org/guide/configuration.html#config-file

look at the:

        '.skew-10deg': {
          transform: 'skewY(-10deg)',
        },

Just replace it with what you have:

        '.all-revert': {
          all: 'revert',
        },

Does that help?

  • Jordan