1.0.4 • Published 1 year ago

@bly-th/tailwind-custom-utilities v1.0.4

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

tailwind-custom-utilities

Generates custom utility classes

Install the plugin from npm:

$ npm install tailwind-custom-utilities

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

// tailwind.config.js
module.exports = {
  theme: {
    // ...
    // Optional. Your plugin might not have any options at all.
    customUtilities: {
      // ...
      YOUR_PLUGIN_CUSTOM_OPTION: true,
      // ...
    },
  },
  variants: {
    // ...
    // Optional. Your plugin might not have any variants at all.
    customUtilities: ['responsive'],
    // ...
  },
  plugins: [
    // ...
    require('tailwind-custom-utilities'),
    // ...
  ],
};

This plugin will generate following CSS:

/* ... */
.example-utility-class {
  display: block;
}

.custom-utility-class {
  background-color: red;
}
/* ... */

License

tailwind-custom-utilities is licensed under the MIT License.

Credits

Created with create-tailwind-plugin.