0.1.5 • Published 1 year ago

@corvu/tailwind v0.1.5

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

NPM Version NPM Downloads License

DocumentationDiscussions

About

This is the tailwindcss plugin for corvu. It adds modifiers to style primitives based on their state:

<Dialog.Content
  class="corvu-open:animate-in corvu-closed:animate-out"
>
  ...
</Dialog.Content>

Getting started

Install the plugin with the package manager of your choice:

npm install @corvu/tailwind

Then add the plugin to your tailwind.config.js file:

module.exports = {
  // ...
  plugins: [
    // Use it with the default prefix 'corvu'
    require('@corvu/tailwind'),
    // or with a custom prefix
    require('@corvu/tailwind')({ prefix: 'ui' }),
    // ...
  ],
}