Welcome to the Tailwind Utils repository! This project provides a custom set of Tailwind CSS utilities that... may or may not be useful to you, but again, it's up to you if you use it or not :3
To install the package, you can use npm:
npm install --save-dev @dead404code/tailwind-utilities
To use the utilities provided by this package, you need to include it in your Tailwind CSS configuration. Here’s how you can do it:
- Open your
tailwind.config.js
file. - Add the plugin to your configuration:
const tailwindUtils = require('@dead404code/tailwind-utilities');
module.exports = {
// other configurations...
plugins: [
tailwindUtils,
// other plugins...
],
};
- Now you can use the custom utilities in your HTML or JSX files!
Utility Class | Description |
---|---|
.app-region-drag | Enables dragging the window using the element. |
.app-region-no-drag | Disables dragging the window using the element. |
Contributions are welcome! If you have suggestions for improvements or new utilities, feel free to open an issue or submit a pull request.
If you encounter any bugs or have feature requests, please report them in the issues section.
This project is licensed under the WTFPL (Do What The Fuck You Want To Public License). You are free to copy, modify, and distribute this package as you wish.